.page-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-support h1, .page-support h2, .page-support h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support h1 {
    font-size: 2.8em;
    text-align: center;
    color: #ffffff;
}

.page-support h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
}

.page-support h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-support h3 {
    font-size: 1.6em;
    color: #007bff;
}

.page-support p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-support .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: #ffc107;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button:hover {
    background: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-support .btn-contact, .page-support .btn-link {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.95em;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-support .btn-contact:hover, .page-support .btn-link:hover {
    background: #0056b3;
}

/* Hero Section */
.page-support .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue for background */
    color: #ffffff;
}

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

.page-support .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-support .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-support .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-support .hero-content p {
    font-size: 1.25em;
    margin-bottom: 20px;
    color: #e9ecef;
}

/* Intro Section */
.page-support .intro-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.page-support .intro-section p {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Channels Section */
.page-support .contact-channels-section {
    padding: 60px 0;
    background-color: #f2f7fc;
}

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

.page-support .channel-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support .channel-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid #007bff;
    padding: 10px;
}

.page-support .channel-item h3 {
    color: #007bff;
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-support .channel-item p {
    font-size: 1em;
    color: #555;
}

/* FAQ Section */
.page-support .faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-support .faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-support .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-support .faq-question:hover {
    background: #f0f0f0;
}

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

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

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

.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: #ffffff;
    color: #444;
}

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

.page-support .faq-item.active .faq-answer p {
    margin-bottom: 10px;
}

/* Resources Section */
.page-support .resources-section {
    padding: 60px 0;
    background-color: #f2f7fc;
}

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

.page-support .resource-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support .resource-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-support .resource-item h3 {
    padding: 20px 20px 10px;
    margin-bottom: 0;
    font-size: 1.3em;
}

.page-support .resource-item h3 a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support .resource-item h3 a:hover {
    color: #ffc107;
}

.page-support .resource-item p {
    padding: 0 20px 20px;
    font-size: 0.95em;
    color: #555;
}

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

.page-support .feedback-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action Section */
.page-support .call-to-action-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff 0%, #ffc107 100%);
    color: #ffffff;
    text-align: center;
}

.page-support .call-to-action-section h2 {
    color: #ffffff;
}

.page-support .call-to-action-section p {
    font-size: 1.2em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e9ecef;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support h1 {
        font-size: 2.4em;
    }
    .page-support h2 {
        font-size: 1.8em;
    }
    .page-support h3 {
        font-size: 1.4em;
    }
    .page-support .hero-image img {
        border-radius: 8px;
    }
    .page-support .channels-grid, .page-support .resource-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-support .channel-icon {
        width: 100px;
        height: 100px;
    }
    .page-support .faq-question h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-support .hero-section {
        padding: 60px 15px;
    }
    .page-support h1 {
        font-size: 2em;
    }
    .page-support h2 {
        font-size: 1.6em;
    }
    .page-support h3 {
        font-size: 1.3em;
    }
    .page-support p {
        font-size: 1em;
    }
    .page-support .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support .channels-grid, .page-support .resource-grid {
        grid-template-columns: 1fr;
    }
    .page-support .channel-item, .page-support .resource-item {
        padding: 25px;
    }
    .page-support .faq-question {
        padding: 15px 20px;
    }
    .page-support .faq-answer {
        padding: 15px 20px;
    }
    .page-support .resource-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-support h1 {
        font-size: 1.8em;
    }
    .page-support h2 {
        font-size: 1.4em;
    }
    .page-support .hero-content p {
        font-size: 1.1em;
    }
    .page-support .channel-icon {
        width: 80px;
        height: 80px;
    }
    .page-support .faq-question h3 {
        font-size: 1em;
    }
    .page-support .faq-toggle {
        font-size: 20px;
    }
    .page-support .resource-img {
        height: 150px;
    }
}