 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow-x: hidden;
        }

        /* Header Section */
        .hero-section {
            min-height: 110vh; /* Default height for larger screens */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%); /* Beautiful violet to indigo gradient */
            background-size: cover;
            background-position: center center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2); /* Slight dark overlay for text contrast */
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            position: relative;
            max-width: 800px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end; /* Push content to the bottom */
            min-height: 100vh; /* Ensure it takes full height relative to hero-section */
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInUp 1s ease-out;
        }

        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: rgba(255,255,255,0.9);
            margin-bottom: 3rem;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
            animation: slideInUp 1s ease-out 0.6s both;
            margin-top: auto; /* Pushes the button to the bottom */
            margin-bottom: 4rem; /* Increased space from the bottom of the header */
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 60vh; /* Reduced height for better background image visibility on mobile */
            }
            .hero-content {
                min-height: 60vh; /* Match hero-section height */
                justify-content: flex-end; /* Ensure content stays at bottom */
            }
            .cta-button {
                margin-bottom: 2rem; /* Adjusted margin for mobile */
            }
        }


        /* Main Content */
        .main-content {
            background: white;
            margin-top: -50px;
            border-radius: 30px 30px 0 0;
            position: relative;
            z-index: 5;
            padding: 4rem 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section {
            margin-bottom: 5rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #2d3748;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            border-radius: 2px;
        }

        /* Objectives Grid */
        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .objective-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .objective-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .objective-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .objective-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 1rem;
        }

        .objective-description {
            color: #718096;
            line-height: 1.7;
        }

        /* Implementation Section */
        .implementation-section {
            background: linear-gradient(135deg, #4A235A 0%, #6B46C1 100%);
            color: white;
            padding: 5rem 2rem;
            margin: 5rem 0;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .implementation-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('imgs/5.jpg') no-repeat center center / cover; /* Strategy Implementation */
            opacity: 0.3;
            z-index: 0;
        }

        .implementation-content {
            position: relative;
            z-index: 2;
        }

        .implementation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .implementation-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .implementation-item h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #FFD700;
        }

        /* Timeline Section */
        .timeline-container {
            position: relative;
            padding: 2rem 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 45%;
            position: relative;
        }

        .timeline-date {
            font-weight: 600;
            color: #DAA520;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.3);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            animation: fadeIn 0.3s ease-out;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal.show {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: #F8F5ED; /* Matching page background */
            margin: auto;
            padding: 2rem;
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            position: relative;
            animation: slideInScale 0.3s ease-out;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes slideInScale {
            from { transform: scale(0.8) translateY(50px); opacity: 0; }
            to { transform: scale(1) translateY(0); opacity: 1; }
        }

        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: #718096;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #2d3748;
        }

        .modal-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #4A235A; /* Dark purple from the scheme */
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .modal-title-image {
            display: block;
            margin: 0 auto 1.5rem auto; /* Center image and add bottom margin */
            max-width: 150px; /* Adjust size as needed */
            height: auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2d3748;
        }

        .form-input, .form-select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f7fafc;
        }

        .form-input:focus, .form-select:focus {
            outline: none;
            border-color: #4A235A; /* Dark purple focus */
            background: white;
            box-shadow: 0 0 0 3px rgba(74, 35, 90, 0.1);
        }

        .radio-group {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .radio-option input[type="radio"] {
            accent-color: #DAA520; /* Gold accent for radio buttons */
        }


        .submit-btn {
            width: 100%;
            background: linear-gradient(45deg, #DAA520, #FFD700);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
        }

        .success-message {
            background: #C6F6D5;
            color: #2F855A;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 1rem;
            display: none; /* Hidden by default, shown by JS */
        }

        /* File upload specific styles */
        .file-upload-status {
            font-size: 0.85rem;
            margin-top: 0.5rem;
            color: #718096;
            display: none; /* Hidden by default */
        }
        .file-upload-status.error {
            color: #e53e3e;
            display: block; /* Show only for errors */
        }
        /* No .file-upload-status.success class needed as it will be hidden */

        /* Footer */
        .footer {
            background: #2d3748;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .timeline-line {
                left: 30px;
            }
            
            .timeline-item {
                flex-direction: row !important;
                padding-left: 60px;
            }
            
            .timeline-content {
                width: 100%;
            }
            
            .timeline-dot {
                left: 30px;
            }
            
            .modal-content {
                margin: 1rem;
                padding: 1.5rem; /* Further reduced padding for very small screens */
            }
            
            .objectives-grid {
                grid-template-columns: 1fr;
            }
            
            .implementation-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }