/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0091AA;
    --secondary-color: #006F85;
    --accent-color: #33ABC0;
    --light-bg: #E6F4FE;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 145, 170, 0.1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:visited,
.logo:hover,
.logo:active {
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-icon {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 145, 170, 0.2);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-bg);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #E6F4FE 0%, #ffffff 50%, #E6F4FE 100%);
}

.features h2,
.how-it-works h2,
.insights h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--light-bg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 145, 170, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.how-it-works h2 {
    color: var(--white) !important;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.step-number {
    font-size: 48px;
    margin-bottom: 15px;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Insights Section */
.insights {
    padding: 80px 0;
    background: linear-gradient(135deg, #E6F4FE 0%, #ffffff 50%, #E6F4FE 100%);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.insight-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--light-bg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.insight-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.insight-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #004d5c 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Support Page */
.support-content {
    padding: 60px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.faq-section h2,
.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    width: 100%;
}

.direct-contact {
    margin-top: 30px;
    text-align: center;
}

.email-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

.legal-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

.legal-nav-link:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.legal-section {
    margin-bottom: 60px;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--light-bg);
}

.legal-section h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section h4 {
    color: var(--text-dark);
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-section p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .features h2,
    .how-it-works h2,
    .insights h2 {
        font-size: 28px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .legal-nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* Legal Hub */
.legal-hub {
    padding: 60px 0;
}

.legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.legal-card {
    background: var(--white);
    border: 2px solid var(--light-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    position: relative;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.legal-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.legal-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.legal-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.legal-card-arrow {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.legal-summary {
    background: var(--light-bg);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
}

.legal-summary h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-summary > p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-item {
    text-align: center;
}

.commitment-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.commitment-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.commitment-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Legal Document Styles */
.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-document h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--light-bg);
}

.legal-document .legal-section {
    margin-bottom: 40px;
}

.legal-document h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.legal-document h4 {
    color: var(--text-dark);
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 600;
}

.legal-document p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-document ul {
    margin: 15px 0 15px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-document ul li {
    margin-bottom: 10px;
}

.legal-document a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-document a:hover {
    text-decoration: underline;
}

.legal-nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}
