* {
    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: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

.logo span {
    color: #2563eb;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 6rem 0 5rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #2563eb;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* Trust Badges */
.trust-badges {
    background: #f9fafb;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.trust-badges p {
    color: #6b7280;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badges span {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    border: 1px solid #e5e7eb;
}

/* Features */
.features {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.25rem;
    color: #111827;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 0.75rem;
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #2563eb;
    transform: translateY(-2px);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #111827;
    font-size: 1.25rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Compliance Section */
.compliance-section {
    background: #111827;
    color: white;
    padding: 5rem 0;
}

.compliance-content {
    max-width: 800px;
}

.compliance-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.compliance-content p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.compliance-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.compliance-content li {
    margin-bottom: 0.75rem;
    color: #e5e7eb;
}

/* Page Header */
.page-header {
    background: #f9fafb;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background: white;
    min-height: 70vh;
}

.legal-page h1 {
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.legal-page section {
    margin-bottom: 3rem;
}

.legal-page h2 {
    color: #1e40af;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.legal-page h3 {
    color: #374151;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-top: 0.75rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-page strong {
    color: #111827;
}

/* Consent Specific */
.consent-hero {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #1e40af;
}

.consent-notice {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.consent-notice.critical {
    background: #eff6ff;
    border-left-color: #2563eb;
}

.consent-notice h2 {
    color: #1e40af;
    margin-top: 0;
}

.consent-notice h3 {
    color: #1e40af;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.opt-out-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.method {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.method h3 {
    margin-top: 0;
    color: #dc2626;
    font-size: 1.1rem;
}

.help-keywords {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.compliance-contact {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
}

.contact-box {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    margin-top: 1rem;
}

/* About Page */
.about-content {
    padding: 4rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: #111827;
    margin: 2rem 0 1rem;
    font-size: 1.75rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.team-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Services */
.services-detail {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.service-block {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block h2 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-block p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-block ul {
    background: #f9fafb;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
}

/* Pricing */
.pricing-table {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-top: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-box h2,
.contact-form-box h2 {
    color: #111827;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.contact-info-box h3 {
    color: #374151;
    margin: 2rem 0 0.75rem;
    font-size: 1.1rem;
}

.contact-info-box p {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-box ul {
    list-style: none;
    margin-top: 1rem;
}

.contact-info-box li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.contact-form-box {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

.copyright a {
    color: #9ca3af;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 1.25rem;
        font-size: 0.9rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .opt-out-methods {
        grid-template-columns: 1fr;
    }
}