/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    background-color: #f9f9f9;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 60px 0;
    background: #ffffff;
    margin-bottom: 20px;
}

/* Alternate Section Background */
section:nth-child(even) {
    background: ;
}

/* Headings */
h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: black;
}

h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: black;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #444;
}

/* Paragraph */
p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Lists */
ul, ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

ul li, ol li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Hero Section */
.hero-section {
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Nude_recumbent_woman_by_Jean-Christophe_Destailleur.jpg/960px-Nude_recumbent_woman_by_Jean-Christophe_Destailleur.jpg?20130221194310') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

/* Optional Dark Overlay for Better Text Visibility */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-section h1,
.hero-section p {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    color: #ffffff;
}

.hero-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}


.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #16325c;
}

/* FAQ Section */
.faq-section h3 {
    margin-top: 15px;
    font-weight: bold;
}


.safety-section ul li {
    font-weight: 500;
}


@media (max-width: 768px) {

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    .hero-section {
        padding: 60px 15px;
    }

    section {
        padding: 40px 0;
    }
}


.service-locations {
    background: #f8f9fc;
    padding: 60px 20px;
}

.service-locations h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-locations p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 1.6;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    max-width: 1100px;
    margin: auto;
}

.city-grid a {
    display: block;
    text-align: center;
    padding: 14px;
    background: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    color: #333;
    border: 1px solid #e0e0e0;
    transition: 0.3s ease;
}

.city-grid a:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}
