* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e6dfce;
}

h1 {
    color: #67446c;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    text-align: center;
}

h2 {
    color: #67446c;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section {
    margin-bottom: 4rem;
}

.container {
    max-width: 909px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.banner-container {
    max-width: 909px;
    margin: 0 auto;
}

.banner {
    width: 100%;
    height: 436px;
    object-fit: contain;
    display: block;
}

/* Navigation */
.nav {
    padding: 1.2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #d4c5b8;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(50px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #67446c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.nav a {
    color: #67446c;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #67446c;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #5a3a5f;
}

.nav a:hover::after {
    width: 100%;
}

/* Title Section */
.title-section {
    margin: 0 0 2rem 0;
}
.title-section .byline {
    text-align: center;
    color: #5a3a5f;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.8;
}

/* About Section */
.about p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Board Members Section */
.board-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
    margin-top: 2rem;
}

.board-member {
    background-color: #f5f2e8;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(103, 68, 108, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e6dfce;
}

.board-member img {
    margin-bottom: 1rem;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: fill;
    border: 4px solid #baab8d;
}

.board-member .name {
    color: #67446c;
    font-size: 1.3rem;
    line-height: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.board-member .position {
    color: #5a3a5f;
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.board-member .description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6rem;
    margin: 0;
}

/* Documents Section */
.documents {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2rem;
}

.document-item {
    background-color: #f5f2e8;
    border: 1px solid #e6dfce;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(103, 68, 108, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.document-item .title {
    flex: 1;
    text-align: left;
    color: #67446c;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 500;
}

.document-item .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #67446c;
    color: #f5f2e8;;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #67446c;
}

.download-btn:hover {
    background-color: #5a3a5f;
    border-color: #5a3a5f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 68, 108, 0.3);
}

/* Contact Section */

.contact-info {
    background-color: #67446c;
    border-radius: 12px;
    padding: 3rem;
    color: #f5f2e8;
    display: grid;
    grid-template-columns: 20% auto;
    gap: 2rem;
    font-size: 1.1rem;
}

.contact-info .label {
    font-weight: 500;
    letter-spacing: 1px;
}

.contact-info .value {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #f5f2e8;
    text-decoration: underline;
}

.contact-info a:hover {
    color: white;
    text-decoration: underline;
}

/* Quote Section */
.quote-content {
    padding: 2rem 4rem;
    text-align: center;
    position: relative;
    font-style: italic;
    color: #5a3a5f;
}

.quote-content .quote {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.quote-content .source {
    font-size: 1rem;
    opacity: 0.6;
}

.quote-content::before,
.quote-content::after {
    content: '"';
    font-size: 7rem;
    color: white;
    position: absolute;
    font-family: serif;
    opacity: 0.6;
}

.quote-content::before {
    left: 1rem;
    top: -2rem;
}

.quote-content::after {
    right: 1rem;
    bottom: -4rem;
}

/* Footer */
.footer {
    background-color: #67446c;
    color: #e6dfce;
    text-align: center;
    padding: 2rem 0 1rem;
}

/* Responsive Design */
@media (max-width: 909px) {
    .banner-container {
        max-width: 100%;
        padding: 0;
    }

    .banner {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .title-section .byline {
        font-size: 1.3rem;
    }

    .nav {
        padding: 1.5rem 0;
        margin-bottom: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f5f2e8;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 12px 12px 0 rgba(103, 68, 108, 0.4);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: 1px solid #e6dfce;
        z-index: 1001;
    }

    .nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav li {
        width: 100%;
        text-align: center;
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #d4c5b8;
    }

    .nav li:hover {
        background-color: #f0ebe0;
    }

    .nav li:last-child {
        border-bottom: none;
    }

    .banner {
        height: 200px;
    }

    .document-item {
        flex-direction: column;
        gap: 1rem;
    }

    .quote-content br {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .banner {
        height: 150px;
    }

    .about p {
        font-size: 1rem;
    }

    .contact-info {
        font-size: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .quote-content {
        padding: 1rem 2rem;
    }

    .quote-content::before,
    .quote-content::after {
        font-size: 4rem;
    }

    .quote-content::after {
        bottom: -2rem;
    }

}
