/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}

.hero-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 6px;
    animation: fadeInDown 1s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero .year {
    font-size: 1.8rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about-text {
    flex: 1 1 400px;
    max-width: 600px;
    padding: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.about-image {
    flex: 1 1 400px;
    max-width: 600px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Objectives Section */
.objectives {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.objectives-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.objective-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 1 1 280px;
    max-width: 320px;
}

.objective-card:hover {
    transform: translateY(-10px);
}

.objective-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: var(--white);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    flex: 1 1 250px;
    max-width: 280px;
}

.step-card:hover {
    transform: scale(1.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Quote Section */
.quote {
    padding: 6rem 0;
    background-color: var(--white);
}

.quote-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.quote-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-text {
    position: relative;
    max-width: 600px;
}

blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -1rem;
    top: -1rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

cite {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-us {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 1 1 250px;
    max-width: 280px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Section Headers */
h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.how-it-works h2 {
    color: var(--white);
}

.how-it-works h2::after {
    background: var(--white);
}

/* Existing styles remain unchanged... */

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .quote-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .quote-image {
        margin: 0 auto;
    }

    blockquote {
        padding-left: 0;
    }

    blockquote::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    section {
        padding: 4rem 0;
    }

    h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .objectives-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero .year {
        font-size: 1.4rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Rest of your existing CSS remains unchanged... */
