* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #333;
}

.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background-color: #0b57d0;
    color: white;
    padding: 70px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.hero-section .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Pink Button */
.btn-demo {
    background-color: #e91e63;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s;
}

.btn-demo:hover {
    background-color: #c2185b;
}

/* Content Area */
.content-section {
    padding: 40px 0;
}

h2 {
    font-size: 26px;
    margin: 30px 0 20px;
    color: #222;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Cities Box */
.cities-box {
    background: #f8f9fa;
    padding: 25px;
    border-left: 5px solid #0b57d0;
    margin: 40px 0;
    border-radius: 8px;
}

.cities-box h3 {
    margin-bottom: 10px;
    color: #0b57d0;
}

.city-names {
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

/* FAQ Section Styling */
.faq-section {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 17px;
    color: #0b57d0;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    padding-left: 5px;
}