/* Modern CSS Reset and Variables */
:root {
    --primary: #154D71;
    --primary-light: #2d7bb8;
    --primary-dark: #0f2f4a;
    --secondary: #5ba3d4;
    --accent: #f4f1e8;
    --text-primary: #154D71;
    --text-secondary: #2d7bb8;
    --text-light: #5ba3d4;
    --background: #ffffff;
    --background-alt: #f4f1e8;
    --background-light: #f8f9fa;
    --background-dark: #154D71;
    --border: #d1e7f0;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(21, 77, 113, 0.1);
    --shadow-md: 0 4px 6px rgba(21, 77, 113, 0.1);
    --shadow-lg: 0 10px 25px rgba(21, 77, 113, 0.15);
    --shadow-xl: 0 20px 40px rgba(21, 77, 113, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-logo {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.hero-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Mobile banner image */
@media (max-width: 768px) {
    .hero-bg-image {
        display: none;
    }
    
    .hero {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    }
    
    .hero::before {
        background: linear-gradient(135deg, rgba(21, 77, 113, 0.9) 0%, rgba(45, 123, 184, 0.9) 100%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21, 77, 113, 0.8) 0%, rgba(45, 123, 184, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    color: white;
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: var(--accent);
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--primary-light);
}

.hero-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #100c08;
    margin-bottom: 3rem;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title .highlight {
    color: var(--primary);
}

.section-title .accent {
    color: var(--primary-light);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #100c08;
    max-width: 600px;
    margin: 0 auto;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    background: linear-gradient(135deg, #f4f1e8 0%, #ffffff 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #d1e7f0;
}

.process-card::before {
    display: none;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, #f4f1e8 100%);
}

.card-header {
    margin-bottom: 2rem;
    position: relative;
}

.step-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.step-icon {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    display: block;
}

.card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #100c08;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-body p {
    color: #100c08;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive adjustments for process section */
@media (max-width: 1024px) {
    .process-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 900px;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .card-body h3 {
        font-size: 1.25rem;
    }
    
    .card-body p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process-card {
        padding: 1.5rem 1rem;
    }
    
    .step-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--background-alt);
}

.stats-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.stats-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.stats-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.stats-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--background-light);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.stat-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.stat-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #154D71;
    color: white;
    padding: 2rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.3;
}

.footer-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.footer-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stats-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}
   
/* Legal Pages Layout */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 0 2rem;
    background: var(--background);
}

.legal-header {
    background: var(--background);
    border-bottom: 2px solid var(--border);
    padding: 2rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.legal-main {
    padding: 2rem 0 3rem 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.page-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.content-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.content-section a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.back-link-container {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.back-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Legal Pages Mobile Styles */
@media (max-width: 768px) {
    .legal-container {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        margin-bottom: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .legal-header-logo img {
        height: 40px;
    }
    
    .legal-header {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .legal-main {
        padding: 0 0 2rem 0;
    }
}
   