.page-support {
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #F4F7FB; /* Background */
}

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

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

.page-support__hero-section {
    position: relative;
    padding-top: 10px; /* Small top margin, assuming body padding-top handles header offset */
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient for hero background */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.page-support__hero-image {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px;
}

.page-support__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Default to cover for desktop */
    aspect-ratio: 16/9; /* Maintain aspect ratio */
}

.page-support__hero-content {
    max-width: 900px;
    padding-bottom: 60px;
    z-index: 1;
}

.page-support__main-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-support__btn-primary,
.page-support__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-support__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-support__btn-secondary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support__btn-secondary:hover {
    background: #f0f8ff;
    color: #1F2D3D;
    border-color: #4A8BFF;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-support__btn-small {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
}

.page-support__btn-large {
    padding: 18px 40px;
    font-size: 20px;
    border-radius: 10px;
}

.page-support__section-title {
    font-size: 38px;
    font-weight: 700;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    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: linear-gradient(90deg, #2F6BFF, #6FA3FF);
    border-radius: 2px;
}

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

.page-support__section-title--light::after {
    background: #ffffff;
}

.page-support__text-block {
    font-size: 17px;
    color: #1F2D3D;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

.page-support__text-block p {
    margin-bottom: 15px;
}

.page-support__dark-section {
    background: #2F6BFF; /* Main color */
    color: #ffffff;
}

.page-support__light-bg {
    background: #ffffff; /* Card BG */
    color: #1F2D3D; /* Text Main */
}

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

.page-support__channel-card {
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-support__channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-support__channel-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-support__card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2F6BFF;
}

.page-support__card-description {
    font-size: 16px;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #1F2D3D;
}
details.page-support__faq-item summary.page-support__faq-question::-webkit-details-marker {
  display: none;
}
details.page-support__faq-item summary.page-support__faq-question:hover {
  background: #f0f5ff;
}
.page-support__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}
.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-support__faq-item .page-support__faq-answer {
  padding: 0 20px 20px;
  background: #F4F7FB;
  border-radius: 0 0 5px 5px;
  color: #1F2D3D;
}
details.page-support__faq-item[open] .page-support__faq-question {
    background: #e0e9ff;
}
details.page-support__faq-item[open] .page-support__faq-toggle {
    color: #1F2D3D;
}

/* Technical Process Section */
.page-support__process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.page-support__step-card img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-support__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Tips Section */
.page-support__tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__tip-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__tip-item img {
    width: 100%;
    
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 50%;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-support__tip-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2F6BFF;
}

.page-support__tip-description {
    font-size: 16px;
    color: #1F2D3D;
}

/* Commitment Section */
.page-support__commitment-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    text-align: justify;
    color: #ffffff;
}

.page-support__commitment-content p {
    margin-bottom: 15px;
}

/* Conclusion Section */
.page-support__conclusion-section .page-support__text-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}


/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-support__main-title {
        font-size: 42px;
    }

    .page-support__section-title {
        font-size: 34px;
    }

    .page-support__description,
    .page-support__text-block p,
    .page-support__card-description,
    .page-support__tip-description,
    .page-support__commitment-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* General */
    .page-support__section-spacing {
        padding: 40px 0;
    }
    .page-support__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero Section */
    .page-support__hero-section {
        padding-top: 10px;
        padding-bottom: 40px;
    }
    .page-support__hero-image {
        max-height: 300px;
    }
    .page-support__hero-image img {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-support__main-title {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 15px;
    }
    .page-support__description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important; /* Ensure wrapping for multiple buttons */
    }
    .page-support__btn-primary,
    .page-support__btn-secondary,
    .page-support a[class*="button"],
    .page-support a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Section Titles */
    .page-support__section-title {
        font-size: clamp(24px, 7vw, 30px);
        margin-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-support__text-block {
        font-size: 15px;
        padding-left: 15px;
        padding-right: 15px;
        text-align: left;
    }

    /* Channels Grid (product/feature grid) */
    .page-support__channels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-support__channel-card {
        padding: 25px;
    }
    .page-support__channel-card img {
        
        min-width: 200px !important;
        min-height: 200px !important;
        width: 100% !important; /* Ensure generic img rule applies */
        height: auto !important;
    }
    .page-support__card-title {
        font-size: 20px;
    }
    .page-support__card-description {
        font-size: 15px;
    }

    /* FAQ Section */
    details.page-support__faq-item summary.page-support__faq-question { padding: 15px; }
    .page-support__faq-qtext { font-size: 16px; }
    .page-support__faq-toggle { font-size: 20px; width: 24px; }
    details.page-support__faq-item .page-support__faq-answer { padding: 0 15px 15px; }
    
    /* Technical Process Section (product/feature grid) */
    .page-support__process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-support__step-card {
        padding: 25px;
    }
    .page-support__step-card img {
        max-width: 200px;
        min-width: 200px !important;
        min-height: 200px !important;
        width: 100% !important; /* Ensure generic img rule applies */
        height: auto !important;
    }
    .page-support__cta-center {
        margin-top: 30px;
    }

    /* Tips Section (product/feature grid) */
    .page-support__tips-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-support__tip-item {
        padding: 25px;
    }
    .page-support__tip-item img {
        
        min-width: 200px !important;
        min-height: 200px !important;
        width: 100% !important; /* Ensure generic img rule applies */
        height: auto !important;
    }
    .page-support__tip-title {
        font-size: 20px;
    }
    .page-support__tip-description {
        font-size: 15px;
    }

    /* Commitment Section */
    .page-support__commitment-content {
        font-size: 15px;
        padding-left: 15px;
        padding-right: 15px;
        text-align: left;
    }

    /* Conclusion Section */
    .page-support__conclusion-section .page-support__text-block {
        font-size: 15px;
        padding-left: 15px;
        padding-right: 15px;
        text-align: left;
    }
    
    /* Generic image/container rules for mobile */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-support__section,
    .page-support__card,
    .page-support__container,
    .page-support__text-block,
    .page-support__commitment-content,
    .page-support__process-steps,
    .page-support__tips-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}