.welcome-btn {
    background: linear-gradient(135deg, #4a5c96 0%, #6b7aa0 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.welcome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 92, 150, 0.3);
}

.dream-btn {
    background: white;
    color: #4a5c96;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.dream-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #4a5c96 0%, #6b7aa0 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 92, 150, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4a5c96;
    border: 2px solid #4a5c96;
    padding: 10px 24px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4a5c96;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    background: white;
    padding: 50px 40px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-buttons .btn-secondary {
    min-width: 120px;
    padding: 12px 30px;
}

.cookie-buttons .btn-primary {
    min-width: 120px;
    padding: 12px 30px;
}

/* Header */
.header {
    background: #4a5c96;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.logo-img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c8d4f0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c8d4f0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #a8b8d8 0%, #c8d4f0 50%, #e8f0ff 100%);
    background-image: url(../images/hero.png);
    background-position: center;
    background-size: cover;
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hero-subtext {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-btn {
    font-size: 18px;
    padding: 15px 30px;
}

.hero-side-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Welcome Section */
.welcome {
    background: white;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.welcome::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    z-index: 2;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.welcome-content {
    padding: 60px 40px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.welcome-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.welcome-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.welcome-subtext {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.welcome-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #6b7aa0 0%, #8a9bc7 100%);
    padding: 40px;
    position: relative;
}

.welcome-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    padding: 30px;
    background-color: #6375CF;
    position: relative;
    top: -15px;
    left: -15px;
    box-shadow: 30px 30px 0 #465391;
}

/* Stats Section */
.stats {
    background: white;
    padding: 60px 20px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-img {
    width: 100px;
    height: 100px;
   
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #4a5c96;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
}

/* Dream Section */
.dream {
    background: linear-gradient(135deg, #4a5c96 0%, #556299 100%);
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.dream-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 500px;
}

.dream-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #7a8bc7 0%, #8a9bd4 100%);
    padding: 60px 40px;
    position: relative;
}

.dream-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    padding: 30px;
    background-color: #6375CF;
    position: relative;
    top: -15px;
    left: -15px;
    box-shadow: 30px 30px 0 #465391;
}

.dream-content {
    padding: 60px 80px 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dream-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.dream-text {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.dream-subtext {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #7a8bc7 0%, #9cadd9 50%, #b8c8e8 100%);
    background-image: url(../images/bcg.png);
    background-position: center;
    background-size: cover;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-item {
    border-radius: 30px;
border: 1px solid #FFF;
background: linear-gradient(0deg, #323B69 0%, #6375CF 100%);
    padding: 30px 10px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-item::before {
    
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(74, 92, 150, 0.3);
}

.feature-icon {
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

.feature-img {
    width: 100%;
  
    object-fit: contain;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta {
    background: #4a5c96;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-form input,
.cta-form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: #666;
}

.cta-form textarea {
    min-height: 120px;
    resize: vertical;
}

.cta-form button {
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
}

.footer-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
   padding: 20px 15px;
    flex-wrap: wrap;
}

.partner-logo {
   
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-18 {
    flex-shrink: 0;
}

.age-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    font-size: 12px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #4a5c96;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .welcome-container {
        grid-template-columns: 1fr;
    }

    .welcome-content {
        padding: 40px 30px;
        order: 2;
    }

    .welcome-image {
        order: 1;
        min-height: 300px;
    }

    .welcome-title {
        font-size: 28px;
    }

    .dream-container {
        grid-template-columns: 1fr;
    }

    .dream-content {
        padding: 40px 30px;
        order: 2;
    }

    .dream-image {
        order: 1;
        min-height: 300px;
    }

    .dream-title {
        font-size: 28px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        padding: 30px 25px;
    }

    .feature-img {
        width: 100px;
        height: 100px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .welcome, .dream, .features, .cta {
        padding: 60px 20px;
    }

    .welcome-title, .dream-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cookie-content {
        padding: 40px 25px 30px;
        margin: 20px;
    }

    .cookie-content h3 {
        font-size: 24px;
    }

    .cookie-buttons {
        gap: 15px;
    }

    .footer-partners {
        gap: 20px;
    }

    .partner-logo {
        height: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        padding: 35px 25px;
    }

    .feature-icon {
        height: 120px;
        margin-bottom: 25px;
    }

    .feature-img {
        width: 100px;
        height: 100px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .welcome-container {
        grid-template-columns: 1fr;
    }

    .welcome-content {
        padding: 40px 30px;
        order: 2;
    }

    .welcome-image {
        order: 1;
        min-height: 350px;
    }

    .dream-container {
        grid-template-columns: 1fr;
    }

    .dream-content {
        padding: 40px 30px;
        order: 2;
    }

    .dream-image {
        order: 1;
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 0;
    }

    .hero {
        padding: 90px 15px 50px;
    }

    .hero-title {
        font-size: 24px;
    }

    .welcome, .dream, .features, .cta {
        padding: 50px 15px;
    }

    .stats {
        padding: 40px 15px;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .feature-icon {
        height: 100px;
        margin-bottom: 20px;
    }

    .feature-img {
        width: 90px;
        height: 90px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .feature-text {
        font-size: 14px;
    }

    .welcome-content,
    .dream-content {
        padding: 30px 20px;
    }

    .welcome-image,
    .dream-image {
        min-height: 250px;
        padding: 30px;
    }

    .footer {
        padding: 30px 15px 15px;
    }

    .age-icon {
        width: 60px;
        height: 60px;
    }

    .cookie-content {
        padding: 30px 20px 25px;
        margin: 15px;
    }

    .cookie-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .cookie-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons .btn-secondary,
    .cookie-buttons .btn-primary {
        width: 100%;
        min-width: unset;
    }
}

/* Ready to Try Section */
        .ready-to-try {
            background: #4a5c96;
            padding: 60px 20px;
            color: white;
            text-align: center;
        }

        .ready-to-try h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .ready-to-try p {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .ready-to-try .btn-primary {
            background: white;
            color: #4a5c96;
            font-weight: 600;
        }

        .ready-to-try .btn-primary:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }


.title {
    background-image: url(../images/title.png);
    background-size: 100% 100%;
    padding: 60px;
    filter: drop-shadow(24px 24px 0 #465391);
    max-width: 800px;
        width: 100%;
        margin: 0 auto;
}

@media (max-width: 480px) {
    .title {
        padding: 40px 30px;
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }
}

.p-hero {
     background-image: url(../images/hero.png) !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding: 120px 20px 80px;
    color: #fff;
    text-align: center;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}


              .page {
                padding: 180px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                