/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 8px -2px hsla(185, 85%, 25%, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.phone-button {
    background: transparent;
    color: hsl(185, 85%, 25%);
    padding: 12px 20px;
    border: 2px solid hsl(185, 85%, 25%);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background: hsl(185, 85%, 25%);
    color: white;
}

.cta-button {
    background: linear-gradient(135deg, hsl(185, 85%, 25%), hsl(185, 75%, 35%));
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px hsla(185, 85%, 25%, 0.3);
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, hsl(185, 95%, 18%) 0%, hsl(185, 85%, 25%) 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Content (for inner pages) */
.content {
    padding: 60px 0;
    background: #fff;
}

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

.content h2 {
    color: hsl(185, 85%, 25%);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content h5 {
    color: hsl(185, 85%, 25%);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.content h5:first-child {
    margin-top: 0;
}

.content p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.8;
}

.content a {
    color: hsl(185, 85%, 25%);
    text-decoration: underline;
}

.content a:hover {
    color: hsl(185, 75%, 35%);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-copyright {
    margin-bottom: 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: hsl(185, 85%, 45%);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: hsl(185, 85%, 60%);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
    }

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

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 160px 0 80px;
    }

    .hero-form {
        padding: 1.5rem;
        margin-bottom: -40px;
    }

    .hero-form h3 {
        font-size: 1.25rem;
    }

    .form-row {
        flex-direction: column;
    }

    .trust-indicators {
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content h5 {
        font-size: 1.1rem;
    }

    .nav {
        padding: 1rem 1rem;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    .header-buttons {
        flex-direction: row;
        gap: 0.5rem;
        display: flex;
        align-items: center;
    }

    .phone-button, .cta-button {
        padding: 8px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}