/* Common styles */
.bg-dark {
    background-color: #171717 !important;
}

.btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
}

/* Typography */
.lead {
    font-size: 1.25rem;
}

.display-3 {
    font-size: 4rem;
}

/* Hero section */
.hero-section {
    padding: 100px 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Card styles */
.card {
    overflow: hidden;
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.02);
}

.demo-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 2rem;
}

.map-section {
    margin-bottom: 80px; /* Adjust this value as needed; 4rem is roughly 64px */
}
