/* Root Variables */
:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-color: #059669;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Global 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: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header Styles */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.hero-cta-button:hover {
    background-color: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Content Section */
.content {
    padding: 4rem 0;
}

article p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
}

article a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

article a:hover {
    color: var(--primary-dark);
}

article h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

article strong {
    color: var(--primary-color);
    font-weight: 600;
}

article ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

article li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
}

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

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

tbody tr:hover {
    background-color: var(--bg-light);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cta-section h2 {
    border: none;
    margin-top: 0;
    color: var(--primary-color);
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.cta-section a:not(.cta-button) {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.25rem;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* NAP Section */
.nap-section {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.nap-content h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.nap-content p {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.nap-content .company-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.nap-content .address {
    margin-bottom: 0.75rem;
}

.nap-content .phone {
    font-size: 1.25rem;
    margin-top: 1rem;
}

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

.nap-content .phone a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
}

.final-cta h2 {
    color: white;
    border: none;
    margin-top: 0;
}

.final-cta p {
    color: white;
    font-size: 1.125rem;
}

.final-cta a {
    color: var(--accent-color);
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-button.primary {
    background-color: var(--accent-color);
}

.cta-button.primary:hover {
    background-color: #d97706;
}

.cta-button.secondary {
    background-color: white;
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.contact-info {
    margin-top: 1.5rem;
    font-size: 1rem;
}

.contact-info a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer p {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

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

    article h2 {
        font-size: 1.5rem;
    }

    article h3 {
        font-size: 1.25rem;
    }

    article p {
        font-size: 1rem;
    }

    article li {
        font-size: 1rem;
    }

    table {
        font-size: 0.875rem;
    }

    th, td {
        padding: 0.75rem 0.5rem;
    }

    .cta-section,
    .final-cta,
    .nap-section {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

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

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

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

    .hero h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header,
    .cta-button,
    .cta-section,
    .final-cta,
    footer {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    h1, h2, h3 {
        page-break-after: avoid;
    }

    table {
        page-break-inside: avoid;
    }
}