html {
    font-size: 16px;
}

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

body {
    font-family: 'Source Serif Pro', serif;
    min-height: 100vh;
    background: #ffffff;
    font-size: 0.875rem;
}

.content-wrapper {
    max-width: 68rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.main-container {
    width: 100%;
    min-height: calc(100svh - 12rem);
    position: relative;
    display: flex;
    flex-direction: column;
}

.logo-container {
    width: 100%;
    background: white;
    padding: 3rem 0 0;
}

.logo-container .content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo {
    width: 13.625rem;
    height: auto;
    max-height: 11rem;
    object-fit: contain;
    margin-bottom: -0.35rem;
    z-index: 9999;
}

.green-section {
    width: 100%;
    min-height: fit-content;
    background: rgba(27,144,99,1);
    position: relative;
    padding-bottom: 2rem;
    color: white;
    flex: 1;
    z-index: 0;
}

.header-content {
    padding-top: 3rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 0.25rem;
    letter-spacing: 0.075em;
}

.highlight-h {
    color: #B7222E;
    font-size: 1.4em;
    display: inline-block;
}

h2 {
    font-size: 1.75rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    max-width: 54.5rem;
}

.construction {
    font-size: 1.75rem;
    font-weight: bold;
    color: rgba(27,144,99,1);
    margin: 1rem 0 1rem 3rem;
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1.4375rem;
}

.contact-info {
    font-size: 1.15rem;
    line-height: 1.5;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item .social-link {
    margin-bottom: 0.25rem;
}

.phone-hours {
    margin-left: 2.25rem;
    font-size: 0.9em;
    opacity: 0.9;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link i {
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
}

.membership-section {
    width: 100%;
    height: 12rem;
    background: rgba(217,217,217,1);
    position: relative;
    padding: 1.9375rem 0;
}

.membership-section h3 {
    color: rgba(96,57,18,1);
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.membership-info {
    display: flex;
    gap: 3.125rem;
    color: rgba(96,57,18,1);
    font-size: 1.5rem;
}

.copy-btn {
    background: none;
    border: none;
    color: rgba(96,57,18,1);
    cursor: pointer;
    padding: 0.3125rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.copy-btn:hover {
    opacity: 0.8;
}

.iban-container {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.copy-feedback {
    font-size: 0.8rem;
    color: rgba(96,57,18,1);
    opacity: 0;
    transition: opacity 0.3s;
}



@media (max-height: 48rem) {


    .header-content {
        padding-top: 2rem;
    }
}

@media (max-width: 48rem) {
    html {
        font-size: 14px;
    }

    /* Remove margin-top override for green-section as it's no longer needed */

    .content-wrapper {
        padding: 0 1.5rem;
    }

    .logo-container {
        padding-top: 1.5rem;
    }

    .logo-container .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        width: 11rem;
        max-height: 9rem;
        margin-bottom: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .construction {
        font-size: 1.5rem;
        margin: 0.5rem 0 1rem;
        text-align: center;
        width: 100%;
    }

    .contact-section h3 {
        font-size: 1.25rem;
    }

    .contact-info {
        font-size: 1.25rem;
    }

    .membership-section h3 {
        font-size: 1.75rem;
    }

    .membership-info {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 1rem;
    }
}
