/* 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 {
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-support__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-support__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-support__button--primary {
    background-color: #FFC107;
    color: #0056b3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-support__button--secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-support__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.page-support__button--link {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-support__button--link:hover {
    background-color: #007BFF;
    color: #ffffff;
}

.page-support__button--download {
    background-color: #007BFF;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.page-support__button--download:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-support__hero-image {
    margin-top: 40px;
}

.page-support__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support__image--full-width {
    border-radius: 0;
    margin-top: 40px;
}

.page-support__image--app-promo {
    max-width: 600px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-support__section {
    padding: 60px 0;
}

.page-support__about-support {
    background-color: #ffffff;
    color: #333;
}

.page-support__section-title {
    font-size: 2.2em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-support__text--small {
    font-size: 0.9em;
    color: #777;
    text-align: center;
    margin-top: 20px;
}

.page-support__link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-support__link:hover {
    text-decoration: underline;
}

.page-support__support-categories {
    background-color: #e9f7ff;
}

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

.page-support__card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-support__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    color: #007BFF;
}

.page-support__card-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: justify;
}

.page-support__commitment {
    background-color: #f1f8ff;
    color: #333;
}

.page-support__cta {
    background-color: #007BFF;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-support__cta .page-support__section-title {
    color: #FFC107;
}

.page-support__cta .page-support__text {
    color: #e0e0e0;
}

.page-support__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-support__contact-direct {
    background-color: #ffffff;
    text-align: center;
}

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

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

    .page-support__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__button {
        padding: 12px 24px;
        width: 80%;
        margin: 0 auto;
    }

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

    .page-support__grid {
        grid-template-columns: 1fr;
    }

    .page-support__card {
        padding: 25px;
    }

    .page-support__image--app-promo {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-support__hero {
        padding: 60px 0;
    }

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

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

    .page-support__button {
        width: 90%;
    }

    .page-support__section {
        padding: 40px 0;
    }

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

    .page-support__text {
        font-size: 0.9em;
    }

    .page-support__card-title {
        font-size: 1.3em;
    }

    .page-support__card-description {
        font-size: 0.85em;
    }
}