* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f5f5f5;
}

.wrapper {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header */
.main-header {
    background: #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.header-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 3px;
}

.logo-subtitle {
    font-size: 14px;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: #ffd700;
    color: #000;
}

/* Help Hero */
.help-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    padding: 70px 28px;
    text-align: center;
}

.help-hero-box h1 {
    font-size: 50px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 14px;
}

.help-hero-box p {
    font-size: 20px;
    color: #ddd;
}

/* Support Options */
.support-options {
    padding: 75px 28px;
    background: #fff;
}

.options-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.option-item {
    background: #f9f9f9;
    padding: 42px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.option-item:hover {
    border-color: #ffd700;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.option-img {
    width: 95px;
    height: 95px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffd700;
}

.option-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-item h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 14px;
    font-weight: 800;
}

.option-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.option-action {
    padding: 13px 35px;
    background: #000;
    color: #ffd700;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.option-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* FAQ Area */
.faq-area {
    padding: 75px 28px;
    background: #f5f5f5;
}

.faq-intro {
    text-align: center;
    margin-bottom: 55px;
}

.faq-intro h2 {
    font-size: 42px;
    font-weight: 900;
    color: #000;
    margin-bottom: 12px;
}

.faq-intro p {
    font-size: 18px;
    color: #666;
}

.faq-group {
    background: #fff;
    border-radius: 16px;
    padding: 42px;
    margin-bottom: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-category {
    font-size: 28px;
    color: #ffd700;
    margin-bottom: 28px;
    font-weight: 900;
    padding-bottom: 16px;
    border-bottom: 3px solid #ffd700;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-single {
    border: 2px solid #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-single:hover {
    border-color: #ffd700;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: #f9f9f9;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-q:hover {
    background: #f5f5f5;
}

.faq-q h4 {
    font-size: 18px;
    color: #000;
    font-weight: 700;
}

.faq-icon {
    font-size: 28px;
    color: #ffd700;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-a {
    padding: 22px 28px;
    background: #fff;
}

.faq-a p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Contact Banner */
.contact-banner {
    padding: 75px 28px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.banner-box {
    text-align: center;
}

.banner-box h2 {
    font-size: 44px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
}

.banner-box p {
    font-size: 20px;
    color: #333;
    margin-bottom: 28px;
    font-weight: 600;
}

.contact-action {
    padding: 18px 50px;
    background: #000;
    color: #ffd700;
    border: none;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Footer */
.main-footer {
    background: #000;
    color: #fff;
    padding: 65px 28px 28px;
}

.footer-wrapper {
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 42px;
    margin-bottom: 42px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 22px;
    color: #ffd700;
    font-weight: 800;
}

.footer-col p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
    color: #ccc;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #ffd700;
}

.footer-base {
    border-top: 1px solid #333;
    padding-top: 28px;
    text-align: center;
}

.footer-base p {
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        gap: 18px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    .help-hero-box h1 {
        font-size: 36px;
    }
    
    .help-hero-box p {
        font-size: 17px;
    }
    
    .options-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-intro h2 {
        font-size: 34px;
    }
    
    .faq-group {
        padding: 32px;
    }
    
    .faq-category {
        font-size: 24px;
    }
    
    .faq-q {
        padding: 18px 22px;
    }
    
    .faq-q h4 {
        font-size: 16px;
    }
    
    .faq-a {
        padding: 18px 22px;
    }
    
    .banner-box h2 {
        font-size: 34px;
    }
    
    .banner-box p {
        font-size: 17px;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .help-hero-box h1 {
        font-size: 30px;
    }
    
    .help-hero-box p {
        font-size: 16px;
    }
    
    .option-item {
        padding: 32px 24px;
    }
    
    .faq-intro h2 {
        font-size: 28px;
    }
    
    .faq-group {
        padding: 24px;
    }
    
    .faq-category {
        font-size: 20px;
    }
    
    .banner-box h2 {
        font-size: 28px;
    }
    
    .contact-action {
        padding: 16px 42px;
        font-size: 17px;
    }
}
