/* General Styles */
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        } */
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 5rem;
            padding: 40px 20px;
        }
        
        h1, h2, h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        /* Header Section */
        .investor-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 60px 40px;
            background: linear-gradient(135deg, #1a2a4c 0%, #2c5aa0 100%);
            color: white;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .investor-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        .investor-header h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
        }
        
        .investor-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        /* Partnership Section */
        .partnership-section {
            margin-bottom: 50px;
            padding: 40px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .partnership-section h2 {
            color: #2c5aa0;
            border-bottom: 2px solid #2c5aa0;
            padding-bottom: 10px;
            display: inline-block;
            font-weight: 700;
        }
        
        .focus-areas {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 30px 0;
        }
        
        .focus-area {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid #2c5aa0;
        }
        
        .focus-area:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .focus-area i {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 15px;
        }
        
        .focus-area h3 {
            color: #2c5aa0;
            margin-bottom: 15px;
        }
        
        /* Forms Section */
        .forms-section {
            margin-bottom: 50px;
            padding: 40px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .forms-section h2 {
            color: #2c5aa0;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .forms-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #2c5aa0;
        }
        
        .form-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .form-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 30px;
            border-radius: 8px;
            border-left: 5px solid #2c5aa0;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #2c5aa0, #d4af37);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .form-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-card:hover::before {
            opacity: 1;
        }
        
        .form-icon {
            font-size: 3rem;
            color: #2c5aa0;
            margin-bottom: 20px;
        }
        
        .form-card h3 {
            color: #2c5aa0;
            margin-bottom: 15px;
        }
        
        .form-card p {
            margin-bottom: 25px;
            color: #555;
        }
        
        .download-btn {
            display: inline-block;
            background: #2c5aa0;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        
        .download-btn:hover {
            background: #1a2a4c;
            transform: translateY(-2px);
        }
        
        /* Benefits Section */
        .benefits-section {
            margin-bottom: 50px;
            padding: 40px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .benefits-section h2 {
            color: #2c5aa0;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .benefits-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #2c5aa0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 1.8rem;
            color: #2c5aa0;
            background: #f0f5ff;
            padding: 15px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .benefit-content h3 {
            color: #2c5aa0;
            margin-bottom: 10px;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, #1a2a4c 0%, #2c5aa0 100%);
            color: white;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 C50,50 50,50 100,0 L100,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: cover;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
            position: relative;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            position: relative;
        }
        
        .contact-btn {
            display: inline-block;
            background: white;
            color: #2c5aa0;
            padding: 15px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .focus-areas {
                grid-template-columns: 1fr;
            }
            
            .form-cards {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 20px 15px;
            }
            
            .investor-header, .partnership-section, .forms-section, .benefits-section, .cta-section {
                padding: 25px;
            }
            
            .investor-header h1 {
                font-size: 2rem;
            }
            
            .focus-area, .form-card, .benefit-item {
                padding: 20px;
            }
        }