@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.header-bg {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.module-title {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.module-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #2a5298;
    border-radius: 2px;
}

.card-hover {
    transition: all 0.3s ease;
}

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

.btn-primary {
    background-color: #e60012;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c5000f;
    transform: translateY(-2px);
}

.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer-menu-btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0;
    color: #666;
    transition: all 0.3s ease;
}

.footer-menu-btn.active {
    color: #e60012;
}

.footer-menu-btn i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.footer-menu-btn span {
    font-size: 0.75rem;
    display: block;
}

.traffic-icon {
    color: #4CAF50;
}

.price-icon {
    color: #e60012;
}

.call-icon {
    color: #2196F3;
}

.highlight-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

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

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding-top: 0.5rem;
}

.faq-answer.active {
    display: block;
}

.process-step {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #2a5298;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1.5rem;
    text-align: center;
}

.step-1::before {
    content: '1';
}

.step-2::before {
    content: '2';
}

.step-3::before {
    content: '3';
}

.step-4::before {
    content: '4';
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}