/* NOHU Homepage Info Sections Styles */

.nohu-homepage-info-sections {
    background-color: #333333;
    padding: 60px 0;
    margin-top: 0;
    clear: both;
    width: 100%;
    box-sizing: border-box;
}

/* Show on mobile too */
@media (max-width: 768px) {
    .nohu-homepage-info-sections {
        display: block !important;
        padding: 40px 0;
    }
    .nohu-info-section {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    .nohu-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

.nohu-info-section {
    margin-bottom: 60px;
    padding: 0 20px;
}

.nohu-info-section:last-child {
    margin-bottom: 0;
}

.nohu-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 77, 0, 0.3);
}

.nohu-section-title.nohu-warning-title {
    color: #ff6b6b;
    border-bottom-color: rgba(255, 107, 107, 0.3);
}

.nohu-section-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
}

.nohu-section-content p {
    margin-bottom: 20px;
}

.nohu-section-content p:last-child {
    margin-bottom: 0;
}

/* Brand Section */
.nohu-brand-section .nohu-section-content {
    text-align: justify;
}

/* Guide Section */
.nohu-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.nohu-guide-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff4d00;
    transition: transform 0.3s, background 0.3s;
}

.nohu-guide-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.nohu-guide-item h3 {
    color: #ff4d00;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.nohu-guide-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Accordion Section */
.nohu-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.nohu-faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    transition: background 0.3s;
}

.nohu-faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nohu-faq-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.nohu-faq-question {
    padding: 20px 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s;
}

.nohu-faq-item:hover .nohu-faq-question {
    background: rgba(255, 255, 255, 0.05);
}

.nohu-faq-icon {
    font-size: 20px;
    color: #ff4d00;
    transition: transform 0.3s;
    font-weight: bold;
    margin-left: 15px;
    flex-shrink: 0;
}

.nohu-faq-item.active .nohu-faq-icon {
    transform: rotate(90deg);
}

.nohu-faq-answer {
    display: none;
    padding: 0 25px 20px 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.8;
}

.nohu-faq-answer p {
    margin: 0;
}

/* Warning Section */
.nohu-warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 10px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.nohu-warning-box p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.nohu-warning-box p strong {
    color: #ff6b6b;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.nohu-warning-box ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.nohu-warning-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.nohu-warning-box ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #ff6b6b;
    font-size: 24px;
    line-height: 1;
}

.nohu-help-contact {
    background: rgba(255, 107, 107, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 30px !important;
    color: #fff !important;
    font-size: 16px;
}

/* Custom Scrollbar Styles */
.nohu-homepage-info-sections::-webkit-scrollbar {
    width: 10px;
}

.nohu-homepage-info-sections::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.nohu-homepage-info-sections::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff4d00, #e63900);
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.nohu-homepage-info-sections::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6b20, #ff4d00);
}

/* Firefox scrollbar */
.nohu-homepage-info-sections {
    scrollbar-width: thin;
    scrollbar-color: #ff4d00 rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nohu-homepage-info-sections {
        padding: 40px 0;
    }
    
    .nohu-info-section {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .nohu-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .nohu-section-content {
        font-size: 14px;
    }
    
    .nohu-guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nohu-guide-item {
        padding: 20px;
    }
    
    .nohu-guide-item h3 {
        font-size: 18px;
    }
    
    .nohu-faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .nohu-faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 14px;
    }
    
    .nohu-warning-box {
        padding: 25px 20px;
    }
    
    .nohu-warning-box p strong {
        font-size: 16px;
    }
    
    .nohu-warning-box ul li {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 25px;
    }
    
    .nohu-help-contact {
        padding: 15px;
        font-size: 14px;
    }
}

