@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    line-height: 1.7;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    color: #1a202c;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

header .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

header .logo:hover {
    transform: translateY(-2px);
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
}

header nav ul li a {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: #fff;
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.hero h2 {
    font-size: 26px;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

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

.intro, .financing, .content {
    padding: 70px 0;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro:hover, .financing:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.intro p, .financing p, .content p, .content ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro a, .content a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.intro a:hover, .content a:hover {
    border-bottom-color: #2563eb;
}

.financing {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 5px solid #2563eb;
}

.financing h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1e3a8a;
    font-size: 32px;
    margin-bottom: 24px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
    padding: 50px 0;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

footer p {
    margin: 0;
    opacity: 0.9;
}

/* About, Services, etc. Pages */
.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.page-header h1 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1e3a8a;
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2563eb;
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 16px;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    header nav ul li a {
        padding: 6px 12px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .content h2 {
        font-size: 26px;
    }

    .intro, .financing, .content {
        padding: 40px 20px;
    }
}