/* style/support.css */
.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 20px;
}

.page-support__hero-section {
    background: linear-gradient(135deg, #FF4500, #1E90FF);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    pointer-events: none;
}

.page-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.page-support__highlight {
    font-weight: bold;
    color: #FFD700; /* Gold for highlight */
}

.page-support__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #1E90FF;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-support__section-title {
    font-size: 2.5em;
    color: #FF4500;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-support__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #1E90FF;
    border-radius: 2px;
}

.page-support__faq-section,
.page-support__contact-section,
.page-support__guides-section,
.page-support__cta-bottom {
    padding: 80px 0;
}

.page-support__faq-section {
    background-color: #fff;
}

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

.page-support__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
    width: 100%;
    background-color: #fff;
    color: #FF4500;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: left;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support__faq-question.active {
    background-color: #fff7f2;
    color: #1E90FF;
}

.page-support__faq-question.active::after {
    transform: rotate(45deg);
}

.page-support__faq-answer {
    padding: 0 25px;
    background-color: #fefefe;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-support__faq-answer p {
    margin-bottom: 0;
    color: #555;
}

.page-support__contact-description,
.page-support__guides-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #666;
}

.page-support__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-support__method-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-support__method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-support__method-title {
    font-size: 1.8em;
    color: #1E90FF;
    margin-bottom: 15px;
}

.page-support__method-card p {
    color: #777;
    margin-bottom: 25px;
}

.page-support__method-button {
    display: inline-block;
    background-color: #1E90FF;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-support__method-button:hover {
    background-color: #007bff;
}

.page-support__guide-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-support__guide-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-support__guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.page-support__guide-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.5em;
    color: #FF4500;
}

.page-support__guide-card h3 a {
    text-decoration: none;
    color: #FF4500;
    transition: color 0.3s ease;
}

.page-support__guide-card h3 a:hover {
    color: #1E90FF;
}

.page-support__guide-card p {
    padding: 0 25px 20px;
    color: #666;
    flex-grow: 1;
}

.page-support__read-more {
    display: inline-block;
    background-color: #FF4500;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 25px 25px;
    transition: background-color 0.3s ease;
}

.page-support__read-more:hover {
    background-color: #e63900;
}

.page-support__cta-bottom {
    background: linear-gradient(135deg, #1E90FF, #007bff);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-support__cta-bottom-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-support__cta-bottom-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }

    .page-support__hero-description {
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-support__faq-answer.active {
        padding: 15px 20px;
    }

    .page-support__contact-methods,
    .page-support__guide-cards {
        grid-template-columns: 1fr;
    }

    .page-support__cta-bottom-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 2em;
    }

    .page-support__hero-description {
        font-size: 0.9em;
    }

    .page-support__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__method-title {
        font-size: 1.5em;
    }

    .page-support__guide-card h3 {
        font-size: 1.3em;
    }

    .page-support__cta-bottom-title {
        font-size: 1.8em;
    }
}