* {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #4E88E6 0%, #712D91 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #4E88E6 0%, #712D91 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 136, 230, 0.15);
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.active {
    max-height: 200px;
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.support-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-online {
    background-color: #10b981;
    color: white;
}

.status-busy {
    background-color: #f59e0b;
    color: white;
}

.guide-step {
    counter-increment: step-counter;
}

.guide-step::before {
    content: counter(step-counter);
    background: linear-gradient(135deg, #4E88E6 0%, #712D91 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: 600;
    font-size: 14px;
}

.guide-container {
    counter-reset: step-counter;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #4E88E6, #712D91, transparent);
}

.sec-pad {
    padding: 6.5rem 0 4rem 0 !important;
}







/* Container */
.form-container {
    background: rgba(245, 245, 250, 0.93);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(60, 60, 110, 0.12);
    padding: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Title */
.form-container h3 {
    color: #1a202c;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Labels */
.form-container label {
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

/* Inputs, Textarea, Select */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.93);
    font-size: 1rem;
    color: #22223b;
    transition: border 0.2s, box-shadow 0.2s;
    margin-bottom: 1.2rem;
}

.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
    border-color: #f6ad55;
    box-shadow: 0 0 0 2px rgba(254,215,102,0.15);
    outline: none;
}

/* Button */
.form-container button[type="submit"] {
    background: linear-gradient(90deg,#ffe259 0,#ffa751 100%);
    color: #22223b;
    font-weight: bold;
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    box-shadow: 0 2px 12px 0 rgba(255,188,66,0.07);
}

.form-container button[type="submit"]:hover {
    background: linear-gradient(90deg,#ffd776 0,#ffbe78 100%);
    opacity: 0.93;
}

/* Success Message */
.form-container .success-message {
    color: #38a169;
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.08rem;
}
