* {
    font-family: 'DM Sans', sans-serif;
}

h1, h2, h3, .font-display {
    font-family: 'Sora', sans-serif;
}

.hero-bg {
    background: linear-gradient(135deg, #0f1f3d 0%, #1a3260 60%, #2370b6 100%);
}

.accent {
    color: #e8442d;
}

.btn-red {
    background: #e8442d;
}

.btn-red:hover {
    background: #c73a25;
}

.btn-green {
    background: #25a244;
}

.btn-green:hover {
    background: #1e8a38;
}

.card-shadow {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.stats-bar {
    background: #f0f4f8;
}

.compare-table th {
    background: #0f1f3d;
    color: white;
}

.compare-table td:nth-child(2) {
    color: #2563eb;
    font-weight: 500;
}

.step-circle {
    background: #0f1f3d;
    color: white;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cta-section {
    background: linear-gradient(135deg, #0f1f3d 0%, #1a3260 100%);
}

.team-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.tag {
    display: inline-block;
    background: #e8f0fe;
    color: #1a56db;
    font-size: 0.75rem;
}

/* Improved font visibility for desktop */
@media (min-width: 768px) {
    .hero-bg .text-base,
    .hero-bg p,
    .hero-bg,
    .stats-bar .text-base,
    .stats-bar div,
    section .text-base,
    section p,
    section li,
    section .text-sm {
        font-size: 1.025rem;
    }
    .hero-bg .text-sm,
    .badge-strip .text-sm,
    section .text-sm {
        font-size: 1rem;
    }
    .city-card .text-base,
    .equipment-pill,
    .compare-table td,
    .compare-table th {
        font-size: 1rem;
    }
}

/* Equipment pills improved visibility */
.equipment-pill {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
    .equipment-pill {
        font-size: 1.1rem;
        padding: 0.6rem 1.25rem;
    }
}

/* City card improved visibility */
.city-card {
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .city-card {
        font-size: 1.05rem;
        padding: 1rem;
    }
}
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 999px;
}

.review-star {
    color: #f59e0b;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease both;
}

.nav-link {
    color: #333;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: red;
}

.badge-strip {
    background: #1a3260;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.equipment-pill {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #374151;
}

.equipment-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25a244;
    flex-shrink: 0;
}

.city-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    background: white;
    transition: box-shadow 0.2s, transform 0.2s;
}

.city-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.city-link {
    color: #2563eb;
    font-size: 0.82rem;
    font-weight: 600;
}

.blog-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .desktop-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f1f3d;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        z-index: 50;
    }
}
