@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;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #e61c24 0%, #ff6b6b 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #e61c24 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: linear-gradient(135deg, #e61c24 0%, #ff6b6b 100%);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(230, 28, 36, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #0078d7 0%, #00a0e9 100%);
    color: white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 120, 215, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #e61c24 0%, #ff6b6b 100%);
    color: white;
    font-size: 24px;
    margin-bottom: 1rem;
}

.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;
    border-radius: 50%;
    background: linear-gradient(135deg, #e61c24 0%, #ff6b6b 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-step:nth-child(1)::before {
    content: '1';
}

.process-step:nth-child(2)::before {
    content: '2';
}

.process-step:nth-child(3)::before {
    content: '3';
}

.process-step:nth-child(4)::before {
    content: '4';
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 1.5rem;
    width: 2px;
    height: calc(100% + 1rem);
    background-color: #e5e7eb;
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

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

.footer-menu-btn {
    flex: 1;
    padding: 0.75rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-menu-btn:first-child {
    background: linear-gradient(135deg, #e61c24 0%, #ff6b6b 100%);
}

.footer-menu-btn:last-child {
    background: linear-gradient(135deg, #0078d7 0%, #00a0e9 100%);
}

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

@media (min-width: 768px) {
    .footer-menu {
        max-width: 768px;
        left: 50%;
        transform: translateX(-50%);
    }
}