@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

:root {
    --primary-dark: #2B3E6F;
    --coral: #FF6B7A;
    --coral-light: #FF9A9E;
    --purple-light: #E8E3F5;
    --mint: #6DD5C3;
    --yellow: #FFD700;
    --white: #FFFFFF;
    --gray: #6C757D;
    --gray-light: #F8F9FA;
    --text-dark: #2c2c2c;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: white;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 122, 0.3);
}

.btn--secondary {
    background: var(--primary-dark);
    color: white;
}

.btn--secondary:hover {
    background: #1e2d4f;
    transform: translateY(-2px);
}

.btn--gradient {
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: white;
}

.btn--gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 122, 0.3);
}

.btn--white {
    background: white;
    color: var(--coral);
    border: 2px solid white;
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: white;
    border-color: white;
    color: var(--coral);
}

.btn--large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn--full {
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

a.logo,
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

a.logo:hover {
    transform: scale(1.05);
}

.logo__icon {
    width: 40px;
    height: 40px;
}

.logo__text {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.logo--light .logo__text {
    color: white;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav__link:hover {
    color: var(--coral-light);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fff 0%, var(--purple-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero__image {
    position: relative;
}

.placeholder-image {
    width: 100%;
    height: auto;
    background: var(--purple-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.decoration--heart {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.decoration--heart::before {
    content: '❤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
}

.decoration--leaf {
    width: 80px;
    height: 80px;
    background: var(--mint);
    border-radius: 0 100% 0 100%;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.decoration--circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    top: 40%;
    left: 45%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.section__title {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 50px;
}

.section__title--left {
    text-align: left;
}

.directions {
    padding: 80px 0;
    background: white;
}

.directions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__icon--gradient-1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.card__icon--gradient-2 {
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
}

.card__icon--gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.card__icon--gradient-4 {
    background: linear-gradient(135deg, var(--mint), #4facfe);
}

.card__icon--gradient-5 {
    background: linear-gradient(135deg, var(--yellow), #ffa751);
}

.card__icon--gradient-6 {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.card__icon--gradient-7 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.card__icon--gradient-8 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.card__icon--gradient-9 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.card__text {
    color: var(--text-dark);
    line-height: 1.5;
}

.about-activity {
    padding: 80px 0;
    background: linear-gradient(to bottom, white, var(--purple-light));
}

.about-activity__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-activity__text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-activity__buttons {
    display: flex;
    gap: 20px;
}

/* Rights and Obligations Section */
.rights-obligations {
    padding: 80px 0;
    background: white;
}

.rights-obligations__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.rights-obligations__text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.rights-obligations__documents {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 30px;
}

.documents__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.documents__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.document-link:hover {
    transform: translateX(5px);
    border-color: var(--coral);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.document-link svg {
    flex-shrink: 0;
    color: var(--coral);
}

.document-link span {
    font-size: 15px;
    font-weight: 400;
}

.volunteer {
    padding: 80px 0;
    background: white;
}

.volunteer__card {
    background: linear-gradient(135deg, white, var(--purple-light));
    border-radius: 30px;
    padding: 50px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.volunteer__avatar {
    width: 150px;
    height: 150px;
}

.volunteer__text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.volunteer__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--coral);
}

.stat__number::after {
    content: '+';
}

.stat__label {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
}

.projects {
    padding: 80px 0;
    background: var(--gray-light);
    overflow: hidden;
}

.projects__slider {
    position: relative;
}

.projects__track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.project-card {
    min-width: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card__image {
    width: 100%;
    height: 200px;
    background: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 20px 20px 10px;
}

.project-card__text {
    padding: 0 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.project-card__link {
    display: inline-block;
    padding: 20px;
    color: var(--coral);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.project-card__link:hover {
    color: var(--coral-light);
}

.projects__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--coral);
    background: white;
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--coral);
    color: white;
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    position: relative;
    overflow: hidden;
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: 42px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.cta__text {
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta__decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration--wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer {
    background: var(--primary-dark);
    color: white;
    position: relative;
    padding-top: 20px;
}

.footer__about .logo {
    padding-top: 10px;
}

.footer__wave {
    position: absolute;
    top: -99px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    pointer-events: none;
}

.footer__wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer__inner {
    padding: 10px 0;
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 10px;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    /*margin-top: 20px;*/
    line-height: 1.8;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__list a:hover {
    color: white;
}

.footer__list--contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__list--contacts svg {
    flex-shrink: 0;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.footer__social {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer__social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer__social a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 2000;
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu__list {
    list-style: none;
}

.mobile-menu__link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: var(--coral-light);
}

@media (max-width: 1024px) {
    .directions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: 36px;
    }

    .about-activity__inner {
        grid-template-columns: 1fr;
    }

    .rights-obligations__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rights-obligations__documents {
        padding: 20px;
    }

    .volunteer__card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .volunteer__avatar {
        margin: 0 auto;
    }

    .volunteer__stats {
        justify-content: center;
    }

    .footer__main {
        grid-template-columns: 1fr;
    }

    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Secondary Pages Styles */
.hero--page {
    background: linear-gradient(135deg, var(--primary-dark), #3a4f7d);
    padding: 120px 0 80px;
    margin-top: 80px;
}

.hero--page .hero__title {
    color: white;
}

.hero--page .hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero__inner--center {
    text-align: center;
}

/* Mission Page */
.mission {
    padding: 80px 0;
}

.mission__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section__title--left {
    text-align: left;
}

.mission__image img {
    width: 100%;
    height: auto;
}

.goals {
    padding: 80px 0;
    background: var(--gray-light);
}

.goals__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.goal-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.goal-card__number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--purple-light);
    opacity: 0.3;
    z-index: 0;
    line-height: 1;
}

.goal-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    z-index: 1;
}

.goal-card__text {
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.values {
    padding: 80px 0;
}

.values__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
}

.value-item__icon {
    margin-bottom: 20px;
}

.value-item__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.value-item__text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Team Page */
.team-intro {
    padding: 60px 0;
    background: white;
}

.team-intro__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-intro__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.team {
    padding: 80px 0;
    background: var(--gray-light);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.team-member {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member__photo {
    margin-bottom: 20px;
}

.team-member__placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: var(--purple-light);
}

.team-member__name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.team-member__position {
    font-size: 16px;
    color: var(--coral);
    margin-bottom: 15px;
}

.team-member__bio {
    color: var(--text-dark);
    line-height: 1.6;
}

.team__grid--small {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.team-member--small {
    padding: 30px;
}

.team-member__placeholder--small {
    width: 150px;
    height: 150px;
}

.join-team {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
}

.join-team__content {
    text-align: center;
    color: white;
}

.join-team__text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    color: white;
}

.join-team__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.join-team__buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.join-team .section__title {
    color: white;
}

.join-team .stat__number {
    color: white;
}

.join-team .stat__label {
    color: white;
}

/* Volunteer Page */
.why-volunteer {
    padding: 80px 0;
    background: white;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-card__icon {
    margin-bottom: 20px;
}

.benefit-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.benefit-card__text {
    color: var(--text-dark);
    line-height: 1.6;
}

.volunteer-directions {
    padding: 80px 0;
    background: var(--gray-light);
}

.directions__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.tab-button {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--purple-light);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button--active,
.tab-button:hover {
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: white;
    border-color: transparent;
}

.directions__content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tab-content--active {
    display: block;
}

.tab-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.tab-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.tab-content ul {
    list-style: none;
    padding-left: 0;
}

.tab-content li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tab-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: bold;
}

.how-to-join {
    padding: 80px 0;
    background: white;
}

.steps__timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step__content {
    padding: 0 20px;
}

.step__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.step__text {
    color: var(--text-dark);
    line-height: 1.6;
}

.volunteer-form-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.volunteer-form,
.partnership-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--purple-light);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox span {
    color: var(--text-dark);
}

.faq {
    padding: 80px 0;
    background: white;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq__item {
    margin-bottom: 20px;
    border: 2px solid var(--purple-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq__question {
    width: 100%;
    padding: 20px 30px;
    background: white;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq__question:hover {
    background: var(--gray-light);
}

.faq__question svg {
    transition: transform 0.3s ease;
}

.faq__item--open .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item--open .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 30px 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Partnership Page */
.partnership-intro {
    padding: 80px 0;
    background: white;
}

.partnership-intro__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partnership-intro__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.partnership-formats {
    padding: 80px 0;
    background: var(--gray-light);
}

.formats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.format-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.format-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.format-card__icon {
    margin-bottom: 30px;
}

.format-card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.format-card__text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.format-card__list {
    list-style: none;
    padding: 0;
}

.format-card__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.format-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
}

.partner-benefits {
    padding: 80px 0;
    background: white;
}

.benefits__list {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--gray-light);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item__icon {
    flex-shrink: 0;
}

.benefit-item__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.benefit-item__text {
    color: var(--text-dark);
    line-height: 1.6;
}

.current-partners {
    padding: 80px 0;
    background: var(--gray-light);
}

.partners__subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 50px;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.partner-logo {
    background: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.partnership-process {
    padding: 80px 0;
    background: white;
}

.process__timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    text-align: center;
}

.process-step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark), #3a4f7d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.process-step__text {
    color: var(--text-dark);
    line-height: 1.6;
    padding: 0 20px;
}

.partnership-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--coral), var(--coral-light));
}

.form-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
}

.partnership-form-section .form-wrapper {
    background: white;
}

.partnership-form-section .section__title {
    color: var(--primary-dark);
}

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    animation: fadeIn 0.3s ease;
}

.contact-modal--active {
    display: block;
}

.contact-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.contact-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-modal__close:hover {
    background: var(--coral);
    transform: rotate(90deg);
}

.contact-modal__close:hover svg {
    color: white;
}

.contact-modal__close svg {
    color: var(--text-dark);
}

.contact-modal__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.contact-modal__subtitle {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-modal__form .form-group {
    margin-bottom: 20px;
}

.contact-modal__form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 14px;
}

.contact-modal__form input,
.contact-modal__form textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--purple-light);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-modal__form input:focus,
.contact-modal__form textarea:focus {
    outline: none;
    border-color: var(--coral);
}

.contact-modal__form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

.success-message--show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.success-message svg {
    color: var(--mint);
}

.success-message span {
    font-weight: 500;
    color: var(--primary-dark);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Body no-scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .nav {
        display: none;
    }

    .header .btn--primary {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .directions__grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .section__title {
        font-size: 28px;
    }

    .about-activity__buttons {
        flex-direction: column;
    }

    .about-activity__buttons .btn {
        width: 100%;
    }

    .projects__track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .project-card {
        scroll-snap-align: start;
        min-width: 250px;
        max-width: 280px;
    }

    .footer__nav {
        grid-template-columns: 1fr;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cta__title {
        font-size: 28px;
    }

    .cta__text {
        font-size: 16px;
    }

    /* Fix rights-obligations section on mobile */
    .rights-obligations__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rights-obligations__documents {
        padding: 20px;
    }

    /* Fix absolute positioned decorations */
    .hero__decorations,
    .cta__decorations {
        display: none;
    }

    /* Fix cards alignment */
    .card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Fix section paddings */
    section {
        padding: 40px 0;
    }

    /* Fix container padding */
    .container {
        padding: 0 15px;
    }

    /* Fix goal cards */
    .goals__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .goal-card {
        padding: 30px 20px;
    }

    .goal-card__number {
        font-size: 36px;
        bottom: 15px;
        right: 15px;
    }

    /* Fix stat blocks */
    .stat {
        min-width: auto;
    }

    /* Fix buttons on mobile */
    .btn--large {
        padding: 12px 30px;
        font-size: 16px;
    }

    .join-team__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .join-team__buttons .btn {
        width: 100%;
    }

    /* Fix images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix about-activity image */
    .about-activity__image {
        display: none;
    }

    /* Fix join-team stats */
    .join-team__stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero__title {
        font-size: 24px;
    }

    .section__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .card__title {
        font-size: 18px;
    }

    .card__text {
        font-size: 14px;
    }

    .document-link span {
        font-size: 13px;
    }

    .document-link {
        padding: 10px 12px;
    }

    /* Fix mobile menu */
    .mobile-menu {
        width: 90%;
        max-width: none;
    }
}

/* Procedures Section */
.procedures {
    background: linear-gradient(135deg, var(--purple-light) 0%, #fff 100%);
    padding: 80px 0;
}

.procedures__content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.procedures__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.procedures__list--full {
    margin-bottom: 0;
}

.procedures__loading {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-size: 18px;
}

.procedures__empty,
.procedures__error {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-size: 16px;
}

.procedures__error {
    color: var(--coral);
}

.procedure-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.procedure-item:hover {
    background: var(--purple-light);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.procedure-item__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    color: var(--primary-dark);
}

.procedure-item__info {
    flex-grow: 1;
}

.procedure-item__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
    word-break: break-word;
}

.procedure-item__meta {
    font-size: 14px;
    color: var(--gray);
}

.procedure-item__download {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.procedure-item__download:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 122, 0.3);
}

.procedures__footer {
    text-align: center;
}

/* Procedures Page */
.procedures-page {
    min-height: 60vh;
    padding: 120px 0 80px;
}

.procedures-page__header {
    text-align: center;
    margin-bottom: 50px;
}

.procedures-page__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.procedures-page__description {
    font-size: 18px;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .procedures {
        padding: 60px 0;
    }

    .procedures__content {
        padding: 25px;
    }

    .procedure-item {
        gap: 15px;
        padding: 15px;
    }

    .procedure-item__icon {
        width: 40px;
        height: 40px;
    }

    .procedure-item__name {
        font-size: 14px;
    }

    .procedure-item__meta {
        font-size: 12px;
    }

    .procedure-item__download {
        width: 40px;
        height: 40px;
    }

    .procedures-page {
        padding: 100px 0 60px;
    }

    .procedures-page__title {
        font-size: 32px;
    }

    .procedures-page__description {
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .footer__social {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .procedure-item {
        flex-wrap: wrap;
    }

    .procedure-item__download {
        margin-left: auto;
    }
}