:root {
    --color-primary: #2F5C8F;
    /* Steel Blue approximation */
    --color-primary-dark: #1e3d61;
    --color-text: #333333;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F5F7FA;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --spacing-container: 1200px;
    --spacing-section: 4rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

/* Header */
.site-header {
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--color-text);
}

.main-nav a:hover {
    color: var(--color-primary);
}

.mobile-nav-toggle {
    display: none;
}

/* Hero */
.hero-section {
    padding: 8rem 0;
    background-color: var(--color-bg-alt);
    text-align: left;
    background-image: linear-gradient(rgba(245, 247, 250, 0.9), rgba(245, 247, 250, 0.9)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Benefits */
.benefits-section {
    padding: var(--spacing-section) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* Social Proof */
.social-proof-section {
    background-color: var(--color-bg-alt);
    padding: 3rem 0;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.clients-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-weight: 600;
    color: #666;
    font-size: 1.2rem;
}

/* About */
.about-section {
    padding: var(--spacing-section) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
}

.about-image {
    background-color: #ddd;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder {
    color: #888;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.site-footer h3 {
    color: white;
}

.footer-grid {
    display: block;
    /* Removed grid to center single column */
    max-width: 600px;
    margin: 0 auto;
}

.phone-large {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    color: var(--color-primary);
}

.email-link {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

.youtube-link {
    justify-content: center;
    /* Center the flex item */
}

/* Form Styles removed */

/* Mobile */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin-bottom: 5px;
        transition: all 0.3s;
    }
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    background-color: white;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.comparison-table th {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover {
    background-color: #f1f1f1;
}

/* Styled Lists */
.styled-list {
    list-style: disc;
    padding-left: 20px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.styled-list li {
    margin-bottom: 0.5rem;
}

.lead-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}