/* style/da-ga.css */

/* General styles for the page-da-ga scope */
.page-da-ga {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light background */
    line-height: 1.6;
    background-color: #FFFFFF; /* Explicitly set body background as per prompt context */
}

.page-da-ga__section-title {
    font-size: 2.5rem;
    color: #26A9E0; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-da-ga__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-da-ga__content-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

/* HERO Section */
.page-da-ga__hero-section {
    padding-top: 10px; /* Rely on body for header offset, then add small top padding */
    padding-bottom: 60px;
    background-color: #f0f8ff; /* Lightest blue tint for hero background */
}

.page-da-ga__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    gap: 40px;
    box-sizing: border-box;
}

.page-da-ga__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
    color: #333333;
}

.page-da-ga__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.page-da-ga__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555555;
}

.page-da-ga__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-da-ga__btn-primary,
.page-da-ga__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-da-ga__btn-primary {
    background-color: #EA7C07; /* Login/CTA color */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

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

.page-da-ga__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0; /* Primary brand color */
    border: 2px solid #26A9E0;
}

.page-da-ga__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-da-ga__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-da-ga__hero-side-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure no extra space below image */
    margin: 0 auto; /* Center image */
}

/* Intro Section */
.page-da-ga__intro-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-da-ga__icon-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-da-ga__icon-box {
    flex: 1 1 30%;
    max-width: 350px;
    text-align: center;
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.page-da-ga__icon-box:hover {
    transform: translateY(-10px);
}

.page-da-ga__icon-box-media {
    width: 160px; /* Adjusted from 240px to 160px for better fit in 3-column layout */
    height: 160px; /* Must be equal to width for square */
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #26A9E0; /* Brand color border */
    box-shadow: 0 0 0 8px rgba(38, 169, 224, 0.2); /* Soft glow */
}

.page-da-ga__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ensure image is also round */
    display: block;
}

.page-da-ga__icon-box-title {
    font-size: 1.5rem;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-da-ga__icon-box-text {
    font-size: 1rem;
    color: #666666;
}

/* Guide Section */
.page-da-ga__guide-section {
    padding: 60px 0;
    background-color: #f0f8ff;
}

.page-da-ga__guide-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-da-ga__guide-step {
    flex: 1 1 30%;
    max-width: 350px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    box-sizing: border-box;
    position: relative;
    padding-top: 80px; /* Space for icon */
}

.page-da-ga__guide-icon {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #26A9E0;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(38, 169, 224, 0.4);
}

.page-da-ga__guide-title {
    font-size: 1.4rem;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-da-ga__guide-text {
    font-size: 1rem;
    color: #666666;
}

.page-da-ga__cta-buttons--center {
    text-align: center;
    margin-top: 40px;
}

/* Tips Section */
.page-da-ga__tips-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-da-ga__tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.page-da-ga__tips-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-da-ga__tips-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.page-da-ga__tips-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-da-ga__tips-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-da-ga__tips-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%2326A9E0"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333333;
}

.page-da-ga__tips-list li strong {
    color: #26A9E0;
}

.page-da-ga__tips-text {
    font-size: 1.1rem;
    color: #555555;
}

/* FAQ Section */
.page-da-ga__faq-section {
    padding: 60px 0;
    background-color: #f0f8ff;
}

.page-da-ga__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-da-ga__faq-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.page-da-ga__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-da-ga__faq-item[open] > .page-da-ga__faq-question {
    background-color: #e6f7ff; /* Lighter background when open */
    color: #26A9E0;
}

.page-da-ga__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-da-ga__faq-item summary {
    list-style: none;
}

.page-da-ga__faq-qtext {
    flex-grow: 1;
}

.page-da-ga__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to become cross */
}

.page-da-ga__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #666666;
    border-top: 1px solid #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-da-ga__hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-da-ga__hero-description {
        font-size: 1.1rem;
    }
    .page-da-ga__icon-box-media {
        width: 140px;
        height: 140px;
    }
    .page-da-ga__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* HERO Section - Mobile */
    .page-da-ga__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 40px;
    }
    .page-da-ga__hero-container {
        flex-direction: column;
        padding: 20px 15px;
        gap: 30px;
    }
    .page-da-ga__hero-content {
        text-align: center;
    }
    .page-da-ga__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem); /* Adjust H1 for smaller screens */
        margin-bottom: 15px;
    }
    .page-da-ga__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-da-ga__hero-cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%;
    }
    .page-da-ga__btn-primary,
    .page-da-ga__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        font-size: 1rem;
        padding: 12px 20px;
    }
    .page-da-ga__hero-image {
        order: -1; /* Image above text on mobile */
    }
    .page-da-ga__hero-side-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Intro Section - Mobile */
    .page-da-ga__intro-section {
        padding: 40px 0;
    }
    .page-da-ga__icon-boxes {
        flex-direction: column;
        gap: 20px;
    }
    .page-da-ga__icon-box {
        max-width: 100%;
        padding: 25px;
    }
    .page-da-ga__icon-box-media {
        width: 120px; /* Still square on mobile */
        height: 120px;
        margin-bottom: 15px;
    }
    .page-da-ga__icon-box-title {
        font-size: 1.3rem;
    }
    .page-da-ga__icon-box-text {
        font-size: 0.95rem;
    }

    /* Guide Section - Mobile */
    .page-da-ga__guide-section {
        padding: 40px 0;
    }
    .page-da-ga__guide-steps {
        flex-direction: column;
        gap: 20px;
    }
    .page-da-ga__guide-step {
        max-width: 100%;
        padding: 25px;
        padding-top: 70px;
    }
    .page-da-ga__guide-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: 20px;
    }
    .page-da-ga__guide-title {
        font-size: 1.3rem;
    }
    .page-da-ga__guide-text {
        font-size: 0.95rem;
    }
    .page-da-ga__cta-buttons--center .page-da-ga__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Tips Section - Mobile */
    .page-da-ga__tips-section {
        padding: 40px 0;
    }
    .page-da-ga__tips-grid {
        flex-direction: column;
        gap: 30px;
    }
    .page-da-ga__tips-image img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-da-ga__tips-list li {
        font-size: 1rem;
        padding-left: 25px;
        background-size: 18px;
        margin-bottom: 10px;
    }
    .page-da-ga__tips-text {
        font-size: 1rem;
    }

    /* FAQ Section - Mobile */
    .page-da-ga__faq-section {
        padding: 40px 0;
    }
    .page-da-ga__faq-list {
        margin-top: 20px;
    }
    .page-da-ga__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-da-ga__faq-toggle {
        font-size: 1.5rem;
    }
    .page-da-ga__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    /* General image and container rules for mobile */
    .page-da-ga img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-da-ga__content-area,
    .page-da-ga__section,
    .page-da-ga__card,
    .page-da-ga__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure images don't have filters */
.page-da-ga img {
    filter: none;
}