/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    background-color: #fff;
    color: #2c3e50;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    flex: 0 0 auto;
}

.header__logo-link {
    display: inline-block;
    height: 50px;
}

.header__logo-img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Navigation Menu */
.nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle-line {
    width: 28px;
    height: 3px;
    background-color: #2c3e50;
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background-color: #fff;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 0.75rem 1rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav__link:hover,
.nav__link--active {
    border-bottom-color: #3498db;
    text-decoration: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 2px solid #ddd;
        border-bottom: 2px solid #ddd;
        display: none;
    }

    .nav__menu.is-active {
        display: flex;
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav__item {
        padding: 0.5rem 1rem;
    }

    .nav__item {
        padding: 0.5rem 1rem;
    }

    .nav__link {
        display: block;
        border-bottom: none;
        padding: 0.5rem 0;
    }

    .nav__toggle.is-active .nav__toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .nav__toggle.is-active .nav__toggle-line:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.is-active .nav__toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    padding: 0;
    text-align: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
    border-radius: 8px;
    min-height: 500px;
}

.hero__container {
    padding: 0;
    height: 100%;
}

/* Hero Title for subpages */
.hero:not([style*="background-image"]) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
}

.hero:not([style*="background-image"]) .hero__container {
    padding: 2rem;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Title Section */
.hero-title {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-bottom: 2rem;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title__text {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .hero {
        min-height: 350px;
    }

    .hero:not([style*="background-image"]) {
        min-height: 120px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero-title__text {
        font-size: 1.8rem;
    }

    .hero-title {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
        min-height: 120px;
    }
}

/* Video Section */
.video-section {
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.video-section__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.video-section__intro {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.video-section__text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.video-section__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.video-section__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .video-section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
}

/* Mission Section */
.mission {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.mission__container {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.mission__list {
    list-style: none;
    margin: 0;
}

.mission__item {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.mission__item::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    color: #3498db;
}

@media (max-width: 768px) {
    .mission__item {
        padding: 0.3rem 0;
        padding-left: 1.2rem;
        font-size: 0.85rem;
    }
}

/* Donation Section */
.donation {
    padding: 3rem 0;
    margin-bottom: 3rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    padding: 3rem 2rem;
}

.donation__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.donation__methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.donation__method {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation__method:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.donation__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.donation__label {
    font-weight: 600;
    color: #555;
    margin-top: 0.5rem;
}

.donation__value {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.donation__bank {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

.donation__text {
    margin-bottom: 1.5rem;
    color: #555;
}

.donation__button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.donation__button:hover {
    background-color: #2980b9;
    text-decoration: none;
}

@media (max-width: 768px) {
    .donation__methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .donation__title {
        font-size: 1.5rem;
    }

    .donation {
        padding: 2rem 1rem;
    }
}

/* Social Media Section */
.social {
    padding: 3rem 0;
    margin-bottom: 3rem;
    text-align: center;
    background-color: #fff;
}

.social__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.social__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #333;
}

.social__link:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social__link--facebook:hover {
    background-color: #3b5998;
    color: #fff;
}

.social__link--instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social__icon {
    font-size: 1.5rem;
}

.social__text {
    font-weight: 600;
}

@media (max-width: 768px) {
    .social__title {
        font-size: 1.5rem;
    }

    .social__links {
        gap: 1rem;
    }

    .social__link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #34495e;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__copyright {
    margin: 0;
    font-size: 0.9rem;
}

.footer__links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 0;
    flex-wrap: wrap;
}

.footer__link {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #3498db;
    text-decoration: underline;
}

.footer__contact {
    font-size: 0.9rem;
    margin: 0;
}

.footer__contact a {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .footer__links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .footer {
        padding: 1.5rem 0;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.about-section__container {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.about-section__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-section__text {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Work Items */
.about-work {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.about-work__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.about-work__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-work__item {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-work__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-work__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about-work__description {
    color: #555;
    line-height: 1.8;
}

/* Impact Stats */
.about-impact {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.about-impact__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-impact__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-impact__stat {
    text-align: center;
    padding: 1.5rem;
}

.about-impact__number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-impact__label {
    font-size: 1rem;
    line-height: 1.6;
}

/* Team Section */
.about-team {
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.about-team__title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-team__intro {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

.about-team__members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-team__member {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team__member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-team__image {
    margin-bottom: 1rem;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.about-team__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-team__member-name {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.about-team__member-role {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-team__member-bio {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.about-team__text {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.about-team__text a {
    color: #0066cc;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about-team__members {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-team__members {
        grid-template-columns: 1fr;
    }

    .about-team__title {
        font-size: 1.5rem;
    }

    .about-team {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-work__items {
        grid-template-columns: 1fr;
    }

    .about-impact__stats {
        grid-template-columns: 1fr;
    }

    .about-work__item {
        border-left-width: 3px;
    }

    .about-impact__number {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Support Page Styles
   ========================================================================== */

.hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.support-donation {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.support-donation__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.support-donation__methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.support-donation__method {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.support-donation__method:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.support-donation__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.support-donation__description {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
}

.support-donation__details {
    background-color: #fff;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.support-donation__label {
    font-weight: 600;
    color: #555;
    margin-top: 0.5rem;
}

.support-donation__value {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.support-donation__bank {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.support-donation__text {
    color: #555;
    margin-bottom: 1rem;
}

.support-donation__button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.support-donation__button:hover {
    background-color: #2980b9;
    text-decoration: none;
}

/* Impact Examples */
.support-impact {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.support-impact__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
}

.support-impact__intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
    font-size: 1.05rem;
}

.support-impact__examples {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-impact__example {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.support-impact__amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.support-impact__description {
    color: #555;
    line-height: 1.6;
}

/* Other Ways to Help */
.support-other {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.support-other__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.support-other__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.support-other__item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.support-other__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.support-other__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.support-other__text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.support-other__text a {
    color: #0066cc;
    font-weight: 600;
}

.support-other__button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.support-other__button:hover {
    background-color: #2980b9;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Thank You Section */
.support-thanks {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

.support-thanks__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.support-thanks__text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.support-thanks__signature {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .support-donation__methods {
        grid-template-columns: 1fr;
    }

    .support-other__items {
        grid-template-columns: 1fr;
    }

    .support-impact__examples {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-donation__method,
    .support-other__item {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-info {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.contact-info__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.contact-info__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-info__item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info__text {
    margin-bottom: 0.5rem;
}

.contact-info__link {
    color: #0066cc;
    font-weight: 600;
}

.contact-info__description {
    color: #555;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.contact-form-section__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #2c3e50;
}

.contact-form-section__subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form__group {
    margin-bottom: 1.5rem;
}

.contact-form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form__checkbox {
    margin-top: 0.25rem;
    cursor: pointer;
}

.contact-form__checkbox-label {
    cursor: pointer;
    color: #555;
    line-height: 1.6;
}

.contact-form__checkbox-label a {
    color: #0066cc;
}

.contact-form__button {
    background-color: #3498db;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form__button:hover {
    background-color: #2980b9;
}

.contact-form__message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

.contact-form__message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form__message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* FAQ */
.contact-faq {
    display: none;
}

/* ==========================================================================
   Legal Pages (Privacy, Imprint)
   ========================================================================== */

.legal-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.legal-section__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.legal-section__title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-section__content {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    line-height: 1.8;
}

.legal-section__subtitle {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section__subtitle:first-child {
    margin-top: 0;
}

.legal-section__subsubtitle {
    font-size: 1.1rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-section__text {
    color: #555;
    margin-bottom: 1rem;
}

.legal-section__text a {
    color: #0066cc;
    font-weight: 600;
}

.legal-section__list {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.legal-section__list li {
    margin-bottom: 0.5rem;
}

.legal-section__text--last {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 2rem 0;
    }

    .legal-section__content {
        padding: 1.5rem;
    }

    .legal-section__title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Membership Form Section
   ========================================================================== */

.membership-form-section {
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.membership-form-section__container {
    padding: 2rem;
}

.membership-form-section__intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.membership-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.membership-form__fieldset {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    background-color: #f8f9fa;
}

.membership-form__legend {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.membership-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.membership-form__group {
    display: flex;
    flex-direction: column;
}

.membership-form__group--half {
    flex: 1;
}

.membership-form__label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.membership-form__input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.membership-form__input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.membership-form__input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.membership-form__radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.membership-form__radio {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.membership-form__radio-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #3498db;
}

.membership-form__radio-label {
    cursor: pointer;
    color: #555;
    font-weight: 500;
}

.membership-form__bank-details {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.membership-form__info-box {
    padding: 1rem;
    background-color: #e3f2fd;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    color: #1565c0;
    font-size: 0.9rem;
}

.membership-form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 0;
}

.membership-form__checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 0.2rem;
    accent-color: #3498db;
    flex-shrink: 0;
}

.membership-form__checkbox-label {
    cursor: pointer;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.membership-form__link {
    color: #0066cc;
    font-weight: 600;
    text-decoration: underline;
}

.membership-form__link:hover {
    color: #0052a3;
}

.membership-form__button {
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: center;
    margin-top: 1rem;
}

.membership-form__button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.membership-form__button:active {
    transform: translateY(0);
}

.membership-form__message {
    padding: 1rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.membership-form__message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.membership-form__message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .membership-form-section__container {
        padding: 1rem;
    }

    .membership-form__row {
        grid-template-columns: 1fr;
    }

    .membership-form__fieldset {
        padding: 1.5rem;
    }

    .membership-form__label {
        font-size: 0.9rem;
    }

    .membership-form__button {
        width: 100%;
    }
}

/* ==========================================================================
   Page Sections Spacing
   ========================================================================== */

.page-section {
    margin: 2rem 0;
}
