/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-support .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General Section Styling */
.page-support section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-support h1,
.page-support h2 {
    text-align: center;
    color: #8B0000; /* Dark Red */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-support h1 {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support h2 {
    font-size: 2.2em;
    position: relative;
    padding-bottom: 15px;
}

.page-support h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    border-radius: 2px;
}

.page-support h3 {
    color: #8B0000; /* Dark Red */
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-support p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

/* CTA Buttons */
.page-support .cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    color: #5a0000;
}

.page-support .primary-button {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
}

.page-support .secondary-button {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
    margin-left: 15px;
}

.page-support .secondary-button:hover {
    background-color: #a00000; /* Slightly lighter red */
    color: #ffe033;
}

/* Support Hero Section */
.page-support .support-hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support .support-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support .support-hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
    object-fit: cover;
}

.page-support .support-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 0 20px;
}

.page-support .support-hero-content h1 {
    color: #ffffff;
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-support .support-hero-content p {
    color: #f0f0f0;
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Contact Methods Section */
.page-support .contact-methods {
    background-color: #ffffff;
    text-align: center;
}

.page-support .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support .contact-item {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support .contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-support .contact-item .contact-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-support .contact-item h3 {
    color: #8B0000;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-support .contact-item p {
    font-size: 1em;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
}

.page-support .contact-button {
    display: inline-block;
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold text */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.page-support .contact-button:hover {
    background-color: #a00000; /* Slightly lighter red */
    transform: translateY(-2px);
}

/* FAQ Section */
.page-support .faq-section {
    background-color: #f0f0f0;
    padding-bottom: 80px;
}

.page-support .faq-list {
    margin-top: 40px;
}

.page-support .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-support .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-support .faq-question:hover {
    background: #f5f5f5;
    border-color: #FFD700;
}

.page-support .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
}

.page-support .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-support .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #8B0000;
}

.page-support .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.page-support .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.page-support .faq-item.active .faq-answer p {
    text-align: left;
    font-size: 1em;
    color: #444;
    margin: 0;
}

.page-support .faq-item .faq-answer a {
    color: #8B0000;
    text-decoration: underline;
}

.page-support .faq-item .faq-answer a:hover {
    color: #FFD700;
}

/* Guides Section */
.page-support .guides-section {
    background-color: #ffffff;
    padding-bottom: 80px;
}

.page-support .guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support .guide-item {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support .guide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-support .guide-item .guide-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-support .guide-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-support .guide-item h3 a {
    color: #8B0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support .guide-item h3 a:hover {
    color: #FFD700;
}

.page-support .guide-item p {
    font-size: 0.95em;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.page-support .guide-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.page-support .guide-button:hover {
    background-color: #e6c200;
    color: #5a0000;
}

/* Troubleshooting Section */
.page-support .troubleshooting-section {
    background-color: #f0f0f0;
    padding-bottom: 80px;
}

.page-support .troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support .troubleshooting-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.page-support .troubleshooting-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-support .troubleshooting-item h3 {
    font-size: 1.3em;
    color: #8B0000;
    margin-bottom: 15px;
    text-align: left;
}

.page-support .troubleshooting-item p {
    font-size: 1em;
    color: #555;
    text-align: left;
    margin-bottom: 0;
}

.page-support .troubleshooting-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-support .troubleshooting-item a:hover {
    text-decoration: underline;
}

/* Feedback Section */
.page-support .feedback-section {
    background-color: #ffffff;
    text-align: center;
}

/* Final CTA Section */
.page-support .final-cta {
    background-color: #8B0000; /* Dark Red background */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-support .final-cta p {
    color: #f0f0f0;
    font-size: 1.4em;
    margin-bottom: 30px;
}

.page-support .final-cta .cta-button {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support h1 {
        font-size: 2.5em;
    }
    .page-support h2 {
        font-size: 2em;
    }
    .page-support .support-hero-content p {
        font-size: 1.1em;
    }
    .page-support .contact-grid,
    .page-support .guides-grid,
    .page-support .troubleshooting-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-support section {
        padding: 40px 0;
    }
    .page-support h1 {
        font-size: 2em;
    }
    .page-support h2 {
        font-size: 1.8em;
    }
    .page-support p {
        font-size: 1em;
    }
    .page-support .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support .support-hero-content h1 {
        font-size: 2.8em;
    }
    .page-support .support-hero-content p {
        font-size: 1em;
    }
    .page-support .contact-item .contact-icon {
        width: 80px;
        height: 80px;
    }
    .page-support .faq-question {
        padding: 15px 20px;
    }
    .page-support .faq-question h3 {
        font-size: 1.1em;
    }
    .page-support .faq-answer {
        padding: 0 20px;
    }
    .page-support .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-support .guide-item .guide-image {
        height: 160px;
    }
    .page-support .final-cta p {
        font-size: 1.1em;
    }
    .page-support .final-cta .cta-button {
        display: block;
        margin: 15px auto;
    }
    .page-support .secondary-button {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-support h1 {
        font-size: 1.8em;
    }
    .page-support h2 {
        font-size: 1.6em;
    }
    .page-support .support-hero-content h1 {
        font-size: 2em;
    }
    .page-support .support-hero-image {
        margin-bottom: 20px;
    }
    .page-support .contact-grid,
    .page-support .guides-grid,
    .page-support .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
    .page-support .contact-item,
    .page-support .guide-item,
    .page-support .troubleshooting-item {
        padding: 20px;
    }
    .page-support .faq-question h3 {
        font-size: 1em;
    }
    .page-support .faq-toggle {
        font-size: 20px;
    }
}