/* General Styling for page-support */
.page-support {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main - for dark background #0D0E12 */
    background-color: #0D0E12; /* Background */
}

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

.page-support__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFB04D; /* Glow color for main titles */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

/* Hero Section */
.page-support__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%); /* Card BG to Background */
}

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

.page-support__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Desktop default */
    border-radius: 8px;
}

.page-support__hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.page-support__main-title {
    font-weight: 800;
    line-height: 1.1;
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 20px;
    font-size: clamp(32px, 4.5vw, 56px); /* Example clamp for responsive H1 */
}

.page-support__description {
    font-size: 18px;
    color: #FFF3E6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.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: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-support__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #ffffff;
    border: 2px solid #FFA53A; /* Border to match gradient top */
}

.page-support__btn-primary:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #A84F0C 100%); /* Glow to Border color */
    border-color: #FFB04D;
    transform: translateY(-2px);
}

.page-support__btn-secondary {
    background: #17191F; /* Card BG */
    color: #FFA53A; /* Auxiliary color */
    border: 2px solid #A84F0C; /* Border */
}

.page-support__btn-secondary:hover {
    background: #0D0E12; /* Background */
    color: #FFB04D; /* Glow */
    border-color: #FFB04D;
    transform: translateY(-2px);
}

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

/* Section specific styling */
.page-support__channels-section,
.page-support__self-help-section,
.page-support__faq-section,
.page-support__contact-section,
.page-support__important-notes-section,
.page-support__conclusion-section {
    padding: 60px 0;
}

.page-support__dark-section {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6;
}

/* Channel Cards */
.page-support__channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-support__channel-card,
.page-support__guide-card,
.page-support__note-item {
    background: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFF3E6;
}

.page-support__channel-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min size */
    min-height: 200px; /* Min size */
    object-fit: cover;
}

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

.page-support__card-text {
    font-size: 16px;
    color: #FFF3E6;
    margin-bottom: 20px;
    flex-grow: 1; /* Make text fill space */
}

/* Guide Cards */
.page-support__guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-support__guide-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-support__guide-card li {
    margin-bottom: 10px;
    font-size: 16px;
}

.page-support__guide-card li a {
    color: #FFB04D; /* Glow */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__guide-card li a:hover {
    color: #FFA53A;
    text-decoration: underline;
}

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

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border */
  overflow: hidden;
  background: #17191F; /* Card BG */
  color: #FFF3E6;
}
details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
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: #0D0E12; /* Background color on hover */
}
.page-support__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFA53A; /* Auxiliary color */
}
.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFB04D; /* Glow color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 25px;
  background: #0D0E12; /* Background */
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  color: #FFF3E6;
}
.page-support__faq-answer p {
    margin: 0;
    padding-top: 10px;
}

/* Contact Section */
.page-support__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-support__contact-form-wrapper,
.page-support__other-contact {
    background: #17191F; /* Card BG */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #FFF3E6;
}

.page-support__form-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFA53A;
    margin-bottom: 25px;
    text-align: center;
}

.page-support__form-group {
    margin-bottom: 20px;
}

.page-support__form-label {
    display: block;
    font-size: 16px;
    color: #FFB04D;
    margin-bottom: 8px;
}

.page-support__form-input,
.page-support__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #A84F0C;
    border-radius: 8px;
    background: #0D0E12; /* Background */
    color: #FFF3E6;
    font-size: 16px;
    box-sizing: border-box;
}

.page-support__form-input::placeholder,
.page-support__form-textarea::placeholder {
    color: rgba(255, 243, 230, 0.7); /* Lighter version of Text Main */
}

.page-support__form-input:focus,
.page-support__form-textarea:focus {
    outline: none;
    border-color: #FFA53A;
    box-shadow: 0 0 0 3px rgba(255, 165, 58, 0.3);
}

.page-support__other-contact img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    min-width: 200px; /* Min size */
    min-height: 200px; /* Min size */
    object-fit: cover;
}

.page-support__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-support__contact-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #FFF3E6;
}

.page-support__contact-list strong {
    color: #FFB04D;
}

.page-support__contact-link {
    color: #FFB04D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support__contact-link:hover {
    color: #FFA53A;
    text-decoration: underline;
}

/* Important Notes Section */
.page-support__notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Conclusion Section */
.page-support__conclusion-section .page-support__section-title {
    color: #FFA53A; /* Auxiliary color */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-support__container {
        padding: 20px 25px;
    }
    .page-support__section-title {
        font-size: 32px;
    }
    .page-support__hero-image {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    /* General Mobile */
    .page-support {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-support__container {
        padding: 20px 15px !important; /* Force padding */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-support__section-title {
        font-size: 28px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    .page-support__section-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-support__hero-section {
        padding-top: 10px;
        padding-bottom: 40px;
    }

    /* HERO Image Specific */
    .page-support__hero-image img {
        object-fit: contain !important; /* Prevent cropping */
        aspect-ratio: unset !important; /* Remove aspect ratio */
        height: auto !important; /* Ensure height adjusts */
        max-width: 100% !important;
        width: 100% !important;
    }
    .page-support__hero-content {
        padding: 0 15px;
    }
    .page-support__main-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 15px;
    }
    .page-support__description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Buttons Mobile */
    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__btn-primary,
    .page-support__btn-secondary {
        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;
    }
    .page-support__cta-buttons,
    .page-support__button-group,
    .page-support__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    /* Image General Mobile */
    .page-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-support__channel-card img,
    .page-support__other-contact img {
        min-width: unset !important;
        min-height: unset !important;
    }

    /* Card Layouts Mobile */
    .page-support__channels-grid,
    .page-support__guides-grid,
    .page-support__contact-grid,
    .page-support__notes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-support__channel-card,
    .page-support__guide-card,
    .page-support__note-item,
    .page-support__contact-form-wrapper,
    .page-support__other-contact {
        padding: 20px;
    }
    .page-support__card-title {
        font-size: 20px;
    }
    .page-support__card-text {
        font-size: 15px;
    }

    /* FAQ Mobile */
    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: 24px;
      width: 24px;
      margin-left: 10px;
    }
    details.page-support__faq-item .page-support__faq-answer {
        padding: 0 15px 15px;
        font-size: 15px;
    }

    /* Contact Form Mobile */
    .page-support__form-title {
        font-size: 20px;
    }
    .page-support__form-label,
    .page-support__form-input,
    .page-support__form-textarea,
    .page-support__contact-list li {
        font-size: 15px;
    }
}