* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}

body {
    line-height: 1.6;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar {
    background: linear-gradient(90deg, #007BFF, #00aaff);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
}

.left-header {
    display: flex;
    align-items: center;
}

.logo-space {
    margin-right: 1rem;
}

.logo-img {
    height: 65px;
    width: auto;
}

.business-name {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
}

.phone-link {
    text-decoration: none;
    color: #ffcc00;
    font-family: 'Roboto', sans-serif;
    margin-left: 1rem;
}

.phone {
    font-size: 1.5rem;
    color: #ffcc00;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.hamburger {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    margin-left: 1rem;
    padding: 0.5rem;
    z-index: 2000;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;
    font-family: 'Roboto', sans-serif;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 1rem;
    width: calc(100% - 2rem);
    background: linear-gradient(90deg, #007BFF, #00aaff);
    text-align: left;
    z-index: 1000;
    padding: 1rem 0;
}

.hero, .about, .services, .contact, .blog, .videos, .faq, .content {
    padding: 2rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin: 1rem auto;
    max-width: 1200px;
    width: calc(100% - 2rem);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
}

.content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #007BFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.content h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.content ul {
    list-style: disc;
    margin: 1rem 0 1rem 2rem;
    font-family: 'Roboto', sans-serif;
}

.content ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 400;
}

.content a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.hero p, .about p, .content p {
    text-align: left;
}

.hero-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.buttons {
    display: flex;
    flex-direction: column;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, #007BFF, #00aaff);
    color: white !important;  /* Add !important here to override .content a */
    text-decoration: none;
    border-radius: 5px;
    margin: 0.5rem 0;
    transition: transform 0.3s ease;
}
.btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #0056b3, #0099ff);
}

.book-now {
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.call-now {
    background: linear-gradient(90deg, #ff4444, #ff6666);
}

.call-now:hover {
    background: linear-gradient(90deg, #cc0000, #ff3333);
}

.service-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Changed to 4 columns for desktop */
    gap: 2rem;
}

.service-item {
    padding: 1rem;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-item img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #007BFF;
}

.service-item p {
    margin-bottom: 1rem;
}

.service-item .btn {
    display: block;
    text-align: center;
}

.blog-list, .video-list, .faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.blog-item, .video-item, .faq-item {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 560px;
    min-width: 250px;
}

.blog-item h3, .video-item h3, .faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #007BFF;
}

.video-container {
    width: 100%;
    max-width: 560px;
    margin: 1rem auto;
}

.video-container video {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 315px;
    border-radius: 8px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin: 0.5rem 0 0.25rem;
}

form input, form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, #007BFF, #00aaff);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

form button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #0056b3, #0099ff);
}

footer {
    background: linear-gradient(90deg, #007BFF, #00aaff);
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffcc00;
}

footer p {
    margin-top: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.contact-cta {
    text-align: center;
}

@media (max-width: 767px) {
    .hamburger {
        display: block;
        margin-left: 0.5rem;
        padding: 0.5rem;
        position: absolute;
        right: 1rem;
        z-index: 2000;
    }

    .navbar {
        flex-wrap: wrap;
        align-items: center;
        padding: 0.5rem;
    }

    .navbar-content {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .left-header {
        flex-wrap: wrap;
    }

    .logo-space {
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .business-name {
        font-size: 1.2rem;
        order: 1;
        margin-right: 3.5rem;
        margin-bottom: 0.5rem;
    }

    .phone-link {
        order: 2;
        width: 100%;
        margin-left: 1rem;
        margin-top: 0;
    }

    .phone {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 1rem;
        width: calc(100% - 2rem);
        background: linear-gradient(90deg, #007BFF, #00aaff);
        text-align: left;
        z-index: 1000;
        padding: 1rem 0;
    }

    .nav-links.active li {
        margin: 0.5rem 0;
        width: 100%;
    }

    .nav-links.active a {
        display: block;
        padding: 0.5rem;
        background: linear-gradient(90deg, #007BFF, #00aaff);
        border-radius: 5px;
    }

    .service-columns {
        grid-template-columns: 1fr;
    }

    .service-item img {
        max-height: 300px; /* Smaller images on mobile */
    }

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

    .blog-list, .video-list, .faq-list {
        flex-direction: column;
        align-items: center;
    }

    .video-container video {
        max-height: 200px;
    }

    .book-now {
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }

    .btn {
        text-align: center;
        width: fit-content;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
        box-sizing: border-box;
    }

    form {
        max-width: 100%;
    }

    footer p {
        text-align: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .content h1 {
        font-size: 1.8rem;
    }

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

    .content ul {
        margin-left: 1.5rem;
    }
}

@media (min-width: 768px) {
    .navbar {
        flex-wrap: nowrap;
    }

    .navbar-content {
        flex-wrap: nowrap;
    }

    .left-header {
        flex-wrap: nowrap;
    }

    .business-name {
        order: 0;
        margin-left: 0.5rem;
        margin-right: 1rem;
    }

    .phone-link {
        pointer-events: none;
        color: #ffcc00;
        margin-left: 0.5rem;
    }

    .phone {
        margin-left: 0.5rem;
    }

    .book-now {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        text-align: center;
    }

    .btn {
        width: fit-content;
    }

    .buttons {
        align-items: center;
    }

    .footer-links {
        display: flex;
        justify-content: center;
    }

    footer p {
        text-align: center;
    }

    .content ul {
        margin-left: 3rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-columns {
        grid-template-columns: 1fr 1fr;
    }

    .video-container video {
        max-height: 250px;
    }
}
