/* Base styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.header {
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo a {
    font-size: 1.5em;
    font-weight: bold;
    color: #0073e6;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 2em;
    color: #0073e6;
    cursor: pointer;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav li a:hover {
    color: #0073e6;
}

.nav-button a {
    background-color: #ff5722;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-button a:hover {
    background-color: #e64a19;
}

/* Hero Section & Form */
.hero-section {
    background-color: #0073e6;
    color: white;
    padding: 80px 20px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero-content {
    max-width: 500px;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.hero-content .subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    font-size: 1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.value-list li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
}

/* Calendly for people in a rush */
.calendly-rush-section {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.calendly-rush-section p {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.calendly-button-link {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.calendly-button-link:hover {
    background-color: #e64a19;
}

.form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 420px;
}

h2.form-heading {
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    font-size: 1.5em;
}

label {
    display: block;
    margin: 12px 0 6px;
    font-weight: bold;
    color: #555;
}

input,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

input:focus,
select:focus {
    border-color: #0073e6;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
}

button {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #ff5722;
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

button:hover {
    background: #e64a19;
}

.hidden {
    display: none;
}

.checkbox-group {
    list-style: none;
    padding: 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: normal;
    color: #333;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #0073e6;
    cursor: pointer;
}

#thankYouSection {
    text-align: center;
    padding: 20px 0;
}

.thank-you-message h2 {
    font-size: 1.8em;
    color: #0073e6;
    margin-bottom: 10px;
}

.thank-you-message p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}

/* General Content Sections */
.content-section {
    padding: 60px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 2.2em;
    color: #0073e6;
    margin-bottom: 15px;
}

.content-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
}

/* Service Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item h3 {
    color: #ff5722;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1em;
    margin: 0;
}

.service-item .service-icon {
    font-size: 2.5em;
    color: #0073e6;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 350px;
    border-left: 5px solid #0073e6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rating {
    color: gold;
    font-size: 1em;
}

.testimonial-item p {
    font-style: italic;
    margin-top: 0;
    margin-bottom: 15px;
}

.testimonial-item .client {
    font-weight: bold;
    color: #333;
}

/* FAQ */
.faq-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: left;
}

.faq-item h3 {
    color: #0073e6;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.faq-item p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Logo Bar */
.logo-bar {
    text-align: center;
    padding: 40px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logos-grid img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Styles for Mobile */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        gap: 20px;
        padding: 60px 10px;
    }

    .hero-content,
    .form-wrapper {
        max-width: 100%;
    }

    .services-grid,
    .testimonials-grid,
    .logos-grid {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .service-item,
    .testimonial-item {
        max-width: 100%;
    }

    .main-nav {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background: #fff;
        z-index: 101;
        box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        display: none;
    }

    .main-nav.open ul {
        display: flex;
    }

    .main-nav li,
    .main-nav .nav-button {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav li a,
    .nav-button a {
        display: block;
        padding: 14px 20px;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
        font-size: 1em;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        flex-shrink: 0;
        font-size: 2em;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2em;
    }

    .content-section h2 {
        font-size: 1.5em;
    }

    .form-wrapper {
        padding: 15px;
    }

    button {
        padding: 12px;
        font-size: 1em;
    }

    .container {
        padding: 0 8px;
    }
}