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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    text-align: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 400;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
}

/* About Section */
.about {
    background-color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Services Section */
.services {
    background-color: #f8fafc;
}

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

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Compliance Section */
.compliance {
    background-color: #ffffff;
}

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

.compliance-item {
    padding: 25px;
    background-color: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.compliance-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.compliance-item p {
    color: #475569;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: #f8fafc;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.contact-info p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #1e293b;
    font-weight: 600;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Privacy Page Styles */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2563eb;
    margin-top: 25px;
    margin-bottom: 12px;
}

.privacy-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.privacy-content li {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .compliance-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card,
    .compliance-item {
        padding: 20px;
    }

    .contact-info {
        padding: 25px;
    }
}

