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

:root {
    --primary-blue: #4A90E2;
    --light-blue: #E3F2FD;
    --accent-blue: #2196F3;
    --dark-text: #333333;
    --light-text: #666666;
    --background: #FFFFFF;
    --light-gray: #F5F8FA;
    --border-color: #E0E0E0;
}

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

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

/* Header */
.header {
    background-color: var(--background);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
}

.cta-button {
    background-color: var(--accent-blue);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #1976D2;
}

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

.hero h1 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.learn-more-button {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(74, 144, 226, 0.3);
}

.learn-more-button:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(74, 144, 226, 0.4);
}

/* Main Content */
.main-content {
    padding: 50px 20px;
}

article {
    background-color: var(--background);
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

h3 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

h4 {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 1.05rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Tables */
.service-table,
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--background);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.service-table thead,
.pricing-table thead {
    background-color: var(--primary-blue);
    color: white;
}

.service-table th,
.pricing-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.service-table td,
.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--light-text);
}

.service-table tbody tr:hover,
.pricing-table tbody tr:hover {
    background-color: var(--light-blue);
}

.service-table tbody tr:last-child td,
.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--background);
    border-left: 4px solid var(--primary-blue);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    margin-top: 0;
}

.faq-item p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
    border-radius: 10px;
    margin: 50px 0;
}

.cta-section h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

.cta-button-large {
    background-color: var(--accent-blue);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(33, 150, 243, 0.3);
}

.cta-button-large:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(33, 150, 243, 0.4);
    text-decoration: none;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
    padding: 50px 20px;
    text-align: center;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

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

/* Map Section */
.map-section {
    padding: 50px 20px;
    background-color: var(--background);
}

.map-section h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.map-container {
    max-width: 100%;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-text);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer p {
    margin: 0;
    color: white;
}

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

    .logo {
        font-size: 16px;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .service-table,
    .pricing-table {
        font-size: 0.9rem;
    }

    .service-table th,
    .service-table td,
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
    }

    .map-container iframe {
        height: 350px;
    }

    .cta-button,
    .learn-more-button,
    .cta-button-large {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 40px 20px;
    }

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

    .main-content {
        padding: 30px 15px;
    }

    .faq-section {
        padding: 20px 15px;
    }

    .faq-item {
        padding: 15px;
    }
}