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

.page-support__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px);
    background-color: #26A9E0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-support__hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 20px;
}

.page-support__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: bold;
}

.page-support__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-support__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-support__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: none;
}

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

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

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

.page-support__keyword {
    font-weight: bold;
    color: #26A9E0;
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-primary {
    background-color: #EA7C07;
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-support__btn-primary:hover {
    background-color: #d16b06;
    border-color: #d16b06;
}

.page-support__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-support__btn-secondary:hover {
    background-color: #e0e0e0;
    color: #1e87b6;
    border-color: #1e87b6;
}

.page-support__cta-buttons--bottom {
    margin-top: 50px;
}

.page-support__dark-section {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-support__dark-section .page-support__section-title {
    color: #ffffff;
}

.page-support__dark-section .page-support__text-block {
    color: #f0f0f0;
}

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

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

.page-support__channel-card:hover {
    transform: translateY(-5px);
}

.page-support__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

.page-support__card-description {
    font-size: 1em;
    margin-bottom: 20px;
}

.page-support__channel-card .page-support__btn-primary {
    background-color: #26A9E0;
    border-color: #26A9E0;
}

.page-support__channel-card .page-support__btn-primary:hover {
    background-color: #1e87b6;
    border-color: #1e87b6;
}

.page-support__issues-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-support__issue-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.page-support__issue-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-support__issue-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-support__issue-description {
    font-size: 1em;
    margin-bottom: 15px;
}

.page-support__link {
    color: #EA7C07;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-support__faq-list {
    margin-top: 30px;
}

.page-support__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-support__dark-section .page-support__faq-item {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333333;
}

.page-support__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    cursor: pointer;
    background-color: #f0f8ff;
    border-bottom: 1px solid #e0e0e0;
    list-style: none;
}

.page-support__faq-item[open] > .page-support__faq-question {
    border-bottom: 1px solid #d0d0d0;
    background-color: #e6f2ff;
}

.page-support__faq-question::-webkit-details-marker,
.page-support__faq-question::marker {
    display: none;
}

.page-support__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #EA7C07;
    margin-left: 15px;
}

.page-support__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #555555;
    background-color: #ffffff;
}

.page-support__dark-section .page-support__faq-answer {
    background-color: #ffffff;
}

.page-support__tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__tip-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    color: #333333;
}

.page-support__tip-icon {
    width: 200px; /* Min size 200x200 */
    height: 200px; /* Min size 200x200 */
    object-fit: contain;
    margin-bottom: 20px;
    filter: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-support__tip-title {
    font-size: 1.4em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-support__commitment-section {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

@media (max-width: 768px) {
    .page-support__hero-section {
        flex-direction: column;
        text-align: center;
        padding-left: 15px;
        padding-right: 15px;
        min-height: 400px;
    }

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

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

    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-support__btn-primary,
    .page-support__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 15px;
        font-size: 0.9em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-support__container {
        padding: 20px 15px;
    }

    .page-support__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-support__text-block {
        font-size: 1em;
    }

    .page-support__channels-grid,
    .page-support__tips-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-support__channel-card,
    .page-support__tip-item,
    .page-support__issue-item,
    .page-support__faq-item {
        padding: 20px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

    .page-support img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-support__hero-image-wrapper,
    .page-support__channel-card,
    .page-support__tip-item,
    .page-support__issue-item,
    .page-support__faq-item,
    .page-support__tips-list,
    .page-support__channels-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-support__hero-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-support__card-image {
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-support__tip-icon {
        min-width: 200px !important;
        min-height: 200px !important;
    }
}