* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d99;
    --light-blue: #e6f2ff;
    --teal: #00887a;
    --dark-teal: #005f54;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #cccccc;
    --gray-dark: #333333;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --border-color: #dddddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-blue);
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    color: var(--dark-blue);
}

button, .cta-button {
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.cta-button {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
}

.cta-button.primary-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
}

.cta-button.primary-btn:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.cta-button.secondary-btn {
    background-color: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
}

.cta-button.secondary-btn:hover {
    background-color: var(--dark-teal);
    border-color: var(--dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 122, 0.3);
}

.cta-button.large-btn {
    padding: 18px 40px;
    font-size: 18px;
}

.sticky-call-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-blue);
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-call-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.sticky-call-text {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.sticky-call-button {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

header.header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: 50px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.header-phone {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}

.header-phone:hover {
    color: var(--dark-blue);
}

.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 61, 153, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    padding: 40px;
}

.hero-h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 22px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-benefits {
    margin: 35px 0;
    text-align: left;
    display: inline-block;
}

.benefit-item {
    font-size: 18px;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-btn {
    margin: 20px 0;
    padding: 18px 40px;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.hero-disclaimer {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
}

.urgency-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 25px;
}

.benefits-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background-color: var(--gray-light);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon img {
    max-width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon img {
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
}

.benefits-section .cta-button {
    margin: 40px auto;
    display: block;
}

.why-choose-section {
    padding: 80px 20px;
    background-color: var(--light-blue);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.why-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.why-item:hover {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.1);
    transform: translateX(5px);
}

.why-item h3 {
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 15px;
    color: var(--text-secondary);
}

.divider-section {
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    margin: 40px 0;
}

.divider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 136, 122, 0.8);
}

.divider-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.divider-content h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 15px;
}

.divider-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 30px;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.stars {
    font-size: 18px;
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-blue);
    margin-top: 15px !important;
    margin-bottom: 0 !important;
}

.testimonials-section .cta-button {
    margin: 40px auto;
    display: block;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--light-blue);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-blue);
    border-color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-secondary);
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 15px;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

.footer {
    background-color: var(--gray-dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--white);
}

.thank-you-section {
    padding: 80px 20px;
    background-color: var(--light-blue);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thank-you-content {
    background-color: var(--white);
    padding: 60px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
}

.thank-you-content h1 {
    color: var(--dark-blue);
    font-size: 48px;
    margin-bottom: 15px;
}

.thank-you-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.thank-you-box {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-blue);
}

.thank-you-box h2 {
    font-size: 28px;
    color: var(--dark-blue);
    text-align: left;
}

.thank-you-box p {
    text-align: left;
}

.thank-you-box .cta-button {
    margin: 20px 0;
}

.thank-you-info {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
    text-align: left;
}

.thank-you-info h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.thank-you-info ul {
    list-style: none;
    padding: 0;
}

.thank-you-info li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.thank-you-info li:before {
    content: "✓ ";
    color: var(--primary-blue);
    font-weight: 700;
    margin-right: 10px;
}

.thank-you-cta {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
    border: 2px solid var(--primary-blue);
}

.back-link {
    margin-top: 30px;
}

.back-link a {
    color: var(--primary-blue);
    font-weight: 600;
}

.legal-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 40px auto;
    background-color: var(--gray-light);
    padding: 40px;
    border-radius: 8px;
}

.legal-content h2 {
    text-align: left;
    font-size: 28px;
    color: var(--dark-blue);
    margin: 40px 0 20px 0;
}

.legal-content h3 {
    text-align: left;
    color: var(--dark-blue);
}

.legal-content p {
    text-align: left;
    color: var(--text-secondary);
}

.legal-content ul {
    margin-left: 20px;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 15px;
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 30px;
}

.disclaimer-text {
    background-color: var(--white);
    padding: 15px;
    border-left: 4px solid var(--primary-blue);
    margin: 30px 0;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .sticky-call-bar {
        padding: 8px 0;
    }

    .sticky-call-container {
        flex-direction: column;
        gap: 8px;
    }

    .sticky-call-text {
        font-size: 12px;
    }

    .sticky-call-button {
        padding: 10px 16px;
        font-size: 12px;
        width: 100%;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-h1 {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-benefits {
        text-align: center;
    }

    .benefit-item {
        font-size: 16px;
        margin: 10px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .header-phone {
        font-size: 16px;
    }

    .benefits-grid, .why-choose-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .benefits-section, .why-choose-section, .testimonials-section, .faq-section {
        padding: 50px 20px;
    }

    .divider-section {
        padding: 50px 20px;
    }

    .final-cta-section {
        padding: 50px 20px;
    }

    .final-cta-section h2 {
        font-size: 28px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 15px;
    }

    .cta-button.large-btn {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
    }

    .urgency-content h2 {
        font-size: 28px;
    }

    .urgency-content p {
        font-size: 16px;
    }

    .divider-content h2 {
        font-size: 28px;
    }

    .divider-content p {
        font-size: 16px;
    }

    .faq-question {
        padding: 16px;
        font-size: 15px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .thank-you-content {
        padding: 40px 20px;
    }

    .thank-you-content h1 {
        font-size: 32px;
    }

    .thank-you-message {
        font-size: 16px;
    }

    .legal-content {
        padding: 20px;
    }

    .legal-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .sticky-call-container {
        flex-direction: column;
    }

    .sticky-call-text {
        display: none;
    }

    .sticky-call-button {
        width: 100%;
        padding: 12px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .hero-h1 {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .hero {
        min-height: 400px;
        padding: 20px 0;
    }

    .hero-content {
        padding: 20px;
    }

    .benefit-item {
        font-size: 14px;
    }

    .cta-button, .cta-button.large-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }

    .hero-btn {
        width: 100%;
    }

    .benefits-section, .why-choose-section, .testimonials-section, .faq-section {
        padding: 40px 15px;
    }

    .benefit-card, .why-item, .testimonial-card {
        padding: 20px;
    }

    .final-cta-section h2 {
        font-size: 24px;
    }

    .final-cta-section p {
        font-size: 15px;
    }

    .footer-section {
        text-align: center;
    }

    .thank-you-content {
        padding: 20px;
    }

    .thank-you-content h1 {
        font-size: 26px;
    }

    .legal-content {
        padding: 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 8px;
    }

    .logo {
        font-size: 18px;
    }
}