.header-top {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.header-bottom {
    background-color: rgba(46,55,164,1);
    color: #fff !important;
}
.main-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #f9f9f9;
}
.main-container h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.main-container h4 {
    text-align: center;
    color: #007bff;
    margin-bottom: 30px;
}
.main-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.main-container p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 30px;
}
.city-table {
    margin-bottom: 30px;
}
.city-table td[colspan="3"] {
    padding: 10px 15px;
    font-size: 1.1rem;
    text-align: center;
}
.diy-section h2 {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 20px;
}
.diy-section ol li {
    margin-bottom: 10px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .city-table td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 8px 0;
        border-bottom: 1px solid #ddd;
    }
}
.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0,0,0,0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0,0,0,0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0,0,0,0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
}
.service-heading {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: bold;
}
.content-section {
    margin-top: 20px;
}
.brand-list {
    margin-top: 20px;
}
.faq-section {
    margin-top: 40px;
}
.location-section {
    margin-top: 40px;
}
.city-list li {
    margin-bottom: 10px;
}

.call-us-btn {
    background-color: rgba(46,55,164,1);
    color: white;
    border: none;
    padding: 10px 15px;
    margin-left: 20px;
    font-size: 16px;
    font-weight: bold;
    animation: blink 1s infinite;
    border-radius: 5px;
    cursor: pointer;
}

.call-us-btn:hover {
    background-color: rgba(46,55,164,1);
}

.call-number {
    margin-left: 15px;
    font-size: 18px;
    font-weight: bold;
}

@keyframes blink {
    0% { background-color: #8890d9; }
    50% { background-color: rgba(46,55,164,1); }
    100% { background-color: #8890d9; }
}