/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #3135c0;
    --secondary-color: #d4366a;
    --dark-text: #333333;
    --light-text: #666666;
    --very-light-bg: #f5f6fd;
    --white: #ffffff;
    --shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #c13060;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--dark-text);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.arrow {
    margin-left: 8px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-color: rgba(245, 246, 253, 0.95);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 500px;
    text-align: center;
    padding: 2rem;
}

.cookie-icon {
    width: 60px;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--primary-color);
    color: var(--white);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    transition: opacity 0.3s;
}

nav ul li a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-color: var(--very-light-bg);
    padding: 0;
}

.hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    padding: 4rem;
    max-width: 60%;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 40%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Key Areas Section */
.key-areas {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.key-areas-header {
    display: flex;
    margin-bottom: 3rem;
}

.key-areas h2 {
    flex: 1;
    max-width: 400px;
}

.key-areas-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.key-areas-image img {
    max-width: 80%;
    border-radius: 8px;
}

.key-areas-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.key-area {
    display: flex;
    gap: 1.5rem;
}

.key-area-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.key-area-text h3 {
    margin-bottom: 0.5rem;
}

.key-area-subtitle {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* Impact Section */
.impact {
    background-color: var(--very-light-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.impact h2 {
    max-width: 800px;
    margin: 0 auto 1rem;
}

.impact-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: var(--shadow);
}

.impact-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* About Us Section */
.about-us {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-us-image {
    flex: 1;
}

.about-us-image img {
    width: 100%;
    border-radius: 8px;
}

.about-us-text {
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--very-light-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: var(--shadow);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        max-width: 100%;
        padding: 3rem 2rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .key-areas-header {
        flex-direction: column;
    }

    .key-areas h2 {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .about-us-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 1rem;
    }

    .impact-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

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

    h2 {
        font-size: 1.7rem;
    }

    .hero-text {
        padding: 2rem 1rem;
    }

    .key-area {
        flex-direction: column;
        gap: 1rem;
    }

    .key-area-number {
        margin-bottom: 0.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}


/* Values Section */
.values {
    background-image: url('./imgs/7.png');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: var(--white);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.values-header {
    max-width: 800px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.values-header h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.mission {
    margin-top: 2rem;
}

.mission h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Daily Motivation Section */
.daily-motivation {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.motivation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.motivation-card {
    text-align: center;
    padding: 2rem;
}

.icon {
    margin-bottom: 1.5rem;
}

.icon img {
    width: 80px;
    height: 80px;
}

/* Culture Section */
.culture {
    background-color: var(--light-blue);
    padding: 5rem 2rem;
}

.culture h2 {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.culture-item {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 2rem;
    gap: 2rem;
}

.culture-item.reverse {
    flex-direction: row-reverse;
}

.culture-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--green-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.culture-number.gold {
    background-color: var(--gold-color);
}

.culture-number.pink {
    background-color: var(--secondary-color);
}

.culture-text {
    flex: 1;
}

.culture-image {
    flex: 1;
    max-width: 400px;
}

.culture-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Testimonial */
.testimonial {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 2rem auto 3rem;
    box-shadow: var(--shadow);
}

.testimonial p {
    color: var(--dark-text);
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    margin-top: 1rem;
}

.testimonial-author p {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Contact Information */
.contact-info {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid #eee;
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 600;
}

address {
    font-style: normal;
    color: var(--light-text);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .culture-item, .culture-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .culture-number {
        margin: 0 auto 1rem;
    }
    
    .culture-image {
        margin-top: 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .values-header {
        padding: 2rem 1.5rem;
    }
    
    .motivation-grid {
        grid-template-columns: 1fr;
    }
    
    .motivation-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .values {
        padding: 3rem 0;
    }
    
    .values-header {
        padding: 1.5rem;
    }
    
    .daily-motivation, .culture {
        padding: 3rem 1rem;
    }
}



.hero1 {
    background-image: url('./imgs/11.png');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
}

.hero1-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero1-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 600px;
}

.hero1-card h1 {
    margin-bottom: 1.5rem;
}

.hero1-card p {
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 2rem;
}

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

.benefits-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.benefits-text h2 {
    text-align: left;
    margin-bottom: 0;
}

.benefits-image-mobile {
    display: none;
}

.benefits-content {
    display: flex;
    gap: 3rem;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

/* Program Timeline Section */
.program-timeline {
    background-color: var(--light-blue);
    padding: 5rem 2rem;
}

.program-timeline h2 {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
    gap: 3rem;
}

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-image {
    flex: 1;
    max-width: 450px;
}

.timeline-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline-content {
    flex: 1;
    display: flex;
    gap: 1.5rem;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-number.gold {
    background-color: var(--gold-color);
}

.timeline-number.pink {
    background-color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.testimonial {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial p {
    font-style: italic;
    color: var(--dark-text);
}

.testimonial-author {
    text-align: right;
    margin-top: 1.5rem;
}

.testimonial-author p {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-form input {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.contact-form .btn-primary {
    margin: 1rem 0;
}

/* Contact Information */
.contact-info {
    margin-top: 3rem;
    font-size: 0.9rem;
}

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

address {
    font-style: normal;
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .benefits-content {
        flex-direction: column;
    }
    
    .benefits-image {
        display: none;
    }
    
    .benefits-image-mobile {
        display: block;
        margin-bottom: 2rem;
    }
    
    .benefits-image-mobile img {
        width: 100%;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }
    
    .timeline-item, .timeline-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-image {
        max-width: 100%;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero-card {
        padding: 2rem;
        max-width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .benefits, .program-timeline, .cta {
        padding: 3rem 1.5rem;
    }
    
    .benefits-text {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-text h2 {
        text-align: center;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-card {
        padding: 1.5rem;
    }
    
    .benefit-item, .timeline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-number, .timeline-number {
        margin: 0 auto 1rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
    }
}