/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ffffff;
    padding: 10px 0;
    border-bottom: 3px solid #d9e4f5;
}

.logo {
    max-width: 250px;
}

.lead {
    font-family: 'Arial Black', sans-serif;
    font-weight: bold;
    color: #232b64;
    margin-top: 20px;
}


.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.nav-link {
    color: #007bff;
    margin-left: 1rem;
}

.nav-link:hover {
    color: #0056b3;
}

.navbar-toggler {
    border-color: #007bff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' width='30' height='30'><path stroke='rgba(0, 123, 255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

/* Main Section */
.main-section {
    background: url('/images/bg-main.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 60px;

}

.main-section img.img-fluid {
    max-width: 100%;
}

.main-section h1 {
    font-size: 2.5rem;
    font-family: 'Arial Black', sans-serif;
    color: #f7f8ff !important;
}

.main-section h4 {
    font-size: 1.5rem;
    color: #CA0306;
    margin-top: 15px;
}

/* Form Styles */
.form-container {
    background-color: white;
    padding: 25px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: relative;
}

.form-container h2 {
    font-family: 'Arial Black', sans-serif;
    color: #232b64;
    font-size: 1.8rem;
    text-align: center;
}

.start-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    /* Similar blue background */
    color: white;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-size: 18px;
    width: 70%;
}

.start-button:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}

.start-button:focus {
    outline: none;
}

#quoteForm input[type="text"],
#quoteForm input[type="email"],
#quoteForm input[type="tel"] {
    border: 1px solid #a09f9f;
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 5px;
}

#quoteForm input::placeholder {
    font-size: 0.9rem;
}

button[type="submit"] {
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #CA0306;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #a80202;
}

/* Disclaimer Styling */
.disclaimer {
    padding-top: 5px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.disclaimer a {
    color: blue;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

.disclaimer input[type="checkbox"] {
    margin-right: 10px;
    height: 14px;
    width: 14px;
    cursor: pointer;
}

.cta-section {
    background-color: #f8f9fa;
    /* Light background using Bootstrap color */
    padding: 2rem 0;
}

.cta-button {
    background-color: #CA0306;
    color: white;
    border-radius: 5px;
    padding: 12px 24px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a80202;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .cta-content {
        margin-top: 20px;
    }
}


.custom-table {
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
    border-collapse: separate;
    border-spacing: 0;
    border: none;
}

.custom-table th,
.custom-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #2b5783;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
}

.custom-table th {
    color: white;
    background-color: #2b5783;
    font-weight: bold;
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #dceaf8;
}

.custom-table tbody tr:nth-child(even) {
    background-color: white;
}

.custom-table tbody tr:hover {
    background-color: #f5f5f5;
}

.custom-table td {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.custom-table thead th {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.custom-table tbody td {
    text-align: left;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #68696c;
}

footer a {
    color: #000000;
    font-size: 0.9rem;
    margin: 0 5px;
}


footer p {
    color: #000000;

}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Layout */
@media (max-width: 768px) {

    .col-md-7,
    .col-md-5 {
        margin-bottom: 30px;
    }

    .form-container {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .main-section h1 {
        font-size: 1.8rem;
    }

    .main-section h4 {
        font-size: 1.2rem;
    }
}

.faq-question {
    cursor: pointer;
    padding: 10px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    font-weight: bold;
}

.faq-answer {
    display: none;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

/* General styles for the phone number */
.phone-number {
    font-size: 1.25rem;
}

/* Mobile styles */
@media (max-width: 768px) {
    .phone-number {
        font-size: 1rem;
        display: flex;
        align-items: center;
    }

    .phone-number i {
        margin-right: 5px;
        font-size: 1rem;
    }

    #geo_city {
        font-size: 1rem;
    }
}