/* =============================================
   STATIC PAGES UNIVERSAL STYLES
   For: About Us, Contact, Privacy, Disclaimer, FAQs, etc.
   ============================================= */

/* Breadcrumbs */
.breadcrumbs {
    background: #f9fafb;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #5B47E0;
}

.breadcrumbs i {
    color: #d1d5db;
    font-size: 12px;
    margin: 0 10px;
}

.breadcrumbs span {
    color: #111827;
    font-weight: 600;
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3em;
    color: white;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.page-icon i {
    font-size: 45px;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    margin: 0;
    opacity: 0.95;
}

/* Static Content Section */
.static-content-section {
    padding: 80px 0;
    background: #f9fafb;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Intro Box */
.intro-box {
    background: white;
    border-left: 5px solid #5B47E0;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.intro-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px 0;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
    font-weight: 500;
}

/* Content Block */
.content-block {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    gap: 25px;
}

.content-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-icon i {
    font-size: 32px;
    color: white;
}

.content-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 15px 0;
}

.content-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Notice Box */
.notice-box {
    background: #fef3c7;
    border-left: 5px solid #f59e0b;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.notice-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon i {
    font-size: 24px;
    color: white;
}

.notice-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 12px 0;
}

.notice-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #78350f;
    margin: 0;
}

/* Closing Box */
.closing-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.closing-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.closing-icon i {
    font-size: 32px;
    color: white;
}

.closing-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.closing-box p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.feature-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #5B47E0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 28px;
    color: #5B47E0;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* CTA Box */
.cta-box {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    margin-top: 50px;
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 15px 0;
}

.cta-box > p {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 30px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.3);
}

.cta-btn.secondary {
    background: white;
    color: #5B47E0;
    border: 2px solid #5B47E0;
}

.cta-btn.secondary:hover {
    background: #5B47E0;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.contact-form-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.form-description {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 30px 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #111827;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #5B47E0;
    box-shadow: 0 0 0 3px rgba(91, 71, 224, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group .input-hint {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 6px;
    display: block;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.3);
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.contact-info-icon i {
    font-size: 28px;
    color: white;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.contact-info-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.contact-info-card a {
    color: #5B47E0;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* FAQ Accordion */
.faq-accordion {
    margin: 40px 0;
}

.faq-item-static {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question-static {
    width: 100%;
    background: #f9fafb;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-static:hover {
    background: #f3f4f6;
}

.faq-question-static i {
    color: #5B47E0;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item-static.active .faq-question-static i {
    transform: rotate(180deg);
}

.faq-answer-static {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-static.active .faq-answer-static {
    max-height: 1000px;
}

.faq-answer-static p {
    padding: 0 25px 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* Privacy/Disclaimer Content */
.legal-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #5B47E0;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 30px 0 15px 0;
}

.legal-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 15px 0;
}

.legal-section ul,
.legal-section ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 10px;
}

.legal-section strong {
    color: #111827;
    font-weight: 700;
}

.last-updated {
    background: #f3f4f6;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
    text-align: center;
}

/* Privacy Highlight Box */
.privacy-highlight-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 35px;
    border-radius: 12px;
    margin: 40px 0;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.privacy-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon i {
    font-size: 32px;
    color: white;
}

.privacy-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
}

.privacy-text p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* Privacy Features Section */
.privacy-features-section {
    margin: 50px 0;
}

.privacy-features-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 30px 0;
    text-align: center;
}

.privacy-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.privacy-feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.privacy-feature-card:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.privacy-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.privacy-feature-icon i {
    font-size: 28px;
    color: white;
}

.privacy-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.privacy-feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Related Pages Section */
.related-pages-section {
    margin: 50px 0;
}

.related-pages-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 30px 0;
    text-align: center;
}

.related-pages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-page-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-page-card:hover {
    border-color: #5B47E0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.15);
}

.related-page-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.related-page-icon i {
    font-size: 28px;
    color: white;
}

.related-page-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px 0;
}

.related-page-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .related-pages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .privacy-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-icon {
        width: 80px;
        height: 80px;
    }
    
    .page-icon i {
        font-size: 36px;
    }
    
    .static-content-section {
        padding: 60px 0;
    }
    
    .intro-box {
        padding: 30px 25px;
    }
    
    .intro-box h2 {
        font-size: 26px;
    }
    
    .lead-text {
        font-size: 18px;
    }
    
    .content-block {
        flex-direction: column;
        padding: 25px;
    }
    
    .content-icon {
        margin: 0 auto 20px;
    }
    
    .content-text h3 {
        font-size: 22px;
        text-align: center;
    }
    
    .content-text p {
        font-size: 16px;
        text-align: center;
    }
    
    .notice-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .privacy-highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .privacy-icon {
        margin: 0 auto 20px;
    }
    
    .privacy-text h3 {
        font-size: 22px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .related-pages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .privacy-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-box {
        padding: 35px 25px;
    }
    
    .cta-box h3 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-section {
        padding: 30px 25px;
    }
    
    .legal-section {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .intro-box h2 {
        font-size: 22px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .closing-box {
        padding: 30px 20px;
    }
    
    .closing-box h3 {
        font-size: 22px;
    }
    
    .closing-box p {
        font-size: 16px;
    }
}
/* =============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================= */

/* Official Contacts Grid */
.official-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.official-contact-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.official-contact-card:hover {
    border-color: #5B47E0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 71, 224, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 32px;
    color: white;
}

.official-contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.contact-description {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link-btn.website {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-link-btn.website:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 71, 224, 0.3);
}

.contact-link-btn.email {
    background: white;
    color: #5B47E0;
    border: 2px solid #5B47E0;
}

.contact-link-btn.email:hover {
    background: #5B47E0;
    color: white;
}

/* Our Contact Section */
.our-contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.our-contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.our-contact-icon i {
    font-size: 36px;
    color: white;
}

.our-contact-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: white;
}

.our-contact-section > p {
    font-size: 18px;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

/* Email Contact Box */
.email-contact-box {
    background: white;
    border-radius: 12px;
    padding: 35px;
    display: flex;
    gap: 25px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.email-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-icon i {
    font-size: 28px;
    color: #5B47E0;
}

.email-content {
    flex: 1;
    text-align: left;
}

.email-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.email-address {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #5B47E0;
    text-decoration: none;
    margin-bottom: 8px;
}

.email-address:hover {
    text-decoration: underline;
}

.email-note {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Help Topics Section */
.help-topics-section {
    margin: 50px 0;
}

.help-topics-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 30px 0;
    text-align: center;
}

.help-topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.help-topic-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.help-topic-card:hover {
    border-color: #5B47E0;
    transform: translateY(-3px);
}

.help-topic-icon {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.help-topic-icon i {
    font-size: 24px;
    color: #5B47E0;
}

.help-topic-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.help-topic-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Response Time Box */
.response-time-box {
    background: #fef3c7;
    border-left: 5px solid #f59e0b;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.response-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-icon i {
    font-size: 24px;
    color: white;
}

.response-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 10px 0;
}

.response-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #78350f;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .official-contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .help-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .our-contact-section {
        padding: 40px 30px;
    }
    
    .email-contact-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .email-content {
        text-align: center;
    }
    
    .email-icon {
        margin: 0 auto;
    }
    
    .help-topics-grid {
        grid-template-columns: 1fr;
    }
    
    .response-time-box {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .response-icon {
        margin: 0 auto 15px;
    }
}