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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

         .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-main {
            font-size: 1.8rem;
            font-weight: bold;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            opacity: 0.9;
            font-weight: normal;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #ffd700;
        }

        /* Hero Section */
        .hero {
            /* background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(30, 63, 115, 0.8)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f0f8ff" width="1200" height="600"/><circle fill="%23e6f3ff" cx="200" cy="150" r="100" opacity="0.3"/><circle fill="%23d1e8ff" cx="800" cy="300" r="150" opacity="0.3"/><circle fill="%23bddeff" cx="1000" cy="100" r="80" opacity="0.3"/></svg>');
            */
            background: linear-gradient(rgba(44, 90, 160, 0.411), rgba(30, 63, 115, 0.336)), 
                        url('img/hero1.png');
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            background-size: cover;
            background-position: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            background: #ffd700;
            color: #2c5aa0;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

        /* Sections */
        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #ffd700;
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* About Section */
        .about {
            background: #f8f9fa;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
            height: 300px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #2c5aa0;
        }
        .about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}
        /* Financing Section */
        .fin {
            background: white;
        }

        .fin-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .fin-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 5px solid #2c5aa0;
            width: 100%;
        }

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

        .fin-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .fin-icon img {
            height: 60px;
            width: auto;
            border-radius: 8px;
            box-shadow: 0 0px 8px rgba(0,0,0,0.1);
        }
         .fin-icon img:first-child {
            height: 60px;
            width: auto;
            border-radius: 8px;
            box-shadow: 0 0px 0px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

        .fin-icon img:nth-child(2) {
            max-width: calc(100% - 80px);
            height: auto;
            max-height: 220px;
            border-radius: 8px;
            box-shadow: 0 0px 0px rgba(0,0,0,0.1);
            flex-grow: 1;
            object-fit: contain;
        }

        .fin-card h3 {
            margin-bottom: 1rem;
            color: #2c5aa0;
        }

        .fin-card p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }

        /* Mission Section */
        .mission {
            background: white;
        }

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

        .mission-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 5px solid #2c5aa0;
        }

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

        .mission-icon {
            font-size: 3rem;
            color: #2c5aa0;
            margin-bottom: 1rem;
        }

        /* Activities Section */
        .activities {
            background: #f8f9fa;
        }

        .activities-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .activity-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .activity-item:hover {
            transform: translateY(-3px);
        }

        .activity-item h3 {
            color: #2c5aa0;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
            color: white;
        }

        .contact-content {
            text-align: center;
        }

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

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
        }
        .contact-item a {
             color: white !important;
             text-decoration: none !important;
    }

        /* Footer */
        footer {
            background: #1e3f73;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

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

            .section-title {
                font-size: 2rem;
            }
        }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Add padding to sections to account for fixed header */
        section {
            scroll-margin-top: 80px;
        }