* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    text-align: left;
    font-weight: 400;
    width: 100%;
    position: relative;
}

.section {
    height: auto;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 20px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    font-family: 'Playfair Display', serif;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    height: auto;
    min-height: auto;
    overflow-y: visible;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

button, input, select, textarea {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

@media (max-width: 992px) {
    .section {
        padding: 70px 15px 20px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 15px 20px;
        min-height: auto;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .section-content {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 50px 10px 20px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}
