/* Base Styles */
:root {
    --primary-color: #2c4a2c;
    --secondary-color: #70b370;
    --bg-color: #f9f9f9;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
}

h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
}

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

.primary-btn:hover {
    background-color: var(--primary-color);
}

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

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

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

header .logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 120px 0 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--white);
    text-align: left;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Mission Section */
.mission {
    background-color: var(--white);
}

.mission-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mission-content, .mission-image {
    flex: 1;
}

.mission-content h2 {
    text-align: left;
}

.mission-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Education Areas Section */
.education-areas {
    background-color: var(--bg-color);
}

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

.area-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.area-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.area-card h3, .area-card p {
    padding: 0 20px;
}

.area-card h3 {
    margin-top: 20px;
    font-size: 1.3rem;
}

.area-card p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.wide-card {
    grid-column: span 2;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--white);
}

.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.step-content {
    width: 45%;
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-indicator {
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: relative;
    z-index: 3;
}

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

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-color);
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
}

/* Registration Section */
.registration {
    background-color: var(--white);
    text-align: center;
}

.registration h2 {
    max-width: 700px;
    margin: 0 auto 40px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input {
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

form button {
    margin-top: 10px;
    cursor: pointer;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    text-decoration: underline;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 550px;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 15px;
}

.cookie-btn {
    margin-top: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.cookie-btn:hover {
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .hero-container, .mission-container {
        flex-direction: column;
    }
    
    .hero-image, .mission-image {
        order: -1;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .wide-card {
        grid-column: auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 70px;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .step-content {
        width: 100%;
        text-align: center;
    }
    
    .steps-line {
        left: 50%;
    }
}

@media (max-width: 500px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.thank-section {
    padding: 100px 0;
    text-align: center;
}

.thank-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.main-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}
