/* style/support.css */

/* General styles for the page-support scope */
.page-support {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-support__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #E53E3E; /* Accent color for titles */
    text-transform: uppercase;
}

.page-support__section-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #1A202C 0%, #0a0a0a 100%);
    color: #ffffff;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

.page-support__main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #E53E3E; /* Accent color for main title */
    line-height: 1.2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-support__hero-description {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-support__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #E53E3E; /* Accent color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure button adapts to container width */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word;
}

.page-support__cta-button:hover {
    background: #c02a2a; /* Darker red on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button--secondary {
    background: #1A202C; /* Main color for secondary button */
    border: 2px solid #E53E3E;
}

.page-support__cta-button--secondary:hover {
    background: #2a3447;
    border-color: #c02a2a;
}

/* Why Choose Section */
.page-support__why-choose-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background for contrast */
    color: #333333; /* Dark text for light background */
}

.page-support__why-choose-section .page-support__section-title {
    color: #1A202C;
}

.page-support__why-choose-section .page-support__section-description {
    color: #555555;
}

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

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

.page-support__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-support__feature-icon {
    width: 200px; /* Enforce minimum display size */
    height: 200px; /* Enforce minimum display size */
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-support__feature-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #E53E3E;
}

.page-support__feature-description {
    font-size: 16px;
    color: #555555;
}

/* Channels Section */
.page-support__channels-section {
    padding: 80px 0;
    background-color: #1A202C; /* Dark background */
    color: #ffffff;
}

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

.page-support__channel-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-support__channel-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.page-support__channel-icon {
    width: 200px; /* Enforce minimum display size */
    height: 200px; /* Enforce minimum display size */
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-support__channel-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #E53E3E;
}

.page-support__channel-text {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-support__channel-button {
    display: inline-block;
    padding: 10px 25px;
    background: #E53E3E;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__channel-button:hover {
    background: #c02a2a;
}

/* FAQ Section */
.page-support__faq-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    color: #333333;
}

.page-support__faq-section .page-support__section-title {
    color: #1A202C;
}

.page-support__faq-section .page-support__section-description {
    color: #555555;
}

.page-support__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-support__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}