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

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

.page-da-ga__section-title {
    font-size: 2.5em;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-da-ga__section-title--white {
    color: #ffffff;
}

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

.page-da-ga__section-description--white {
    color: #f0f0f0;
}

/* Buttons */
.page-da-ga__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    max-width: 100%; /* For responsive buttons */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-da-ga__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

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

.page-da-ga__btn-secondary {
    background-color: #ffffff; /* Card BG */
    color: #2F6BFF; /* Main color */
    border: 2px solid #2F6BFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-da-ga__btn-secondary:hover {
    background-color: #F4F7FB; /* Background */
    color: #2159db;
    border-color: #2159db;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.page-da-ga__btn--center {
    display: block;
    margin: 40px auto 0;
    width: fit-content;
}

/* Hero Section */
.page-da-ga__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #F4F7FB; /* Background color */
}

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

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

.page-da-ga__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* H1 size, clamped */
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.page-da-ga__hero-description {
    font-size: 1.2em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-da-ga__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-da-ga__hero-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-da-ga__icon-box {
    background-color: #ffffff; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-da-ga__icon-box-media {
    width: 200px; /* Fixed width for circle */
    height: 200px; /* Fixed height for circle */
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #D6E2FF; /* Border color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-da-ga__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-da-ga__icon-box-title {
    font-size: 1.5em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-da-ga__icon-box-text {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
}

/* Content Area - Dark Background */
.page-da-ga__content-area {
    padding: 60px 0;
    background-color: #2F6BFF; /* Main color */
    color: #ffffff;
}

.page-da-ga__content-area .page-da-ga__section-title {
    color: #ffffff;
}

.page-da-ga__content-area .page-da-ga__section-description {
    color: #f0f0f0;
}

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

.page-da-ga__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-da-ga__feature-title {
    font-size: 1.4em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-da-ga__feature-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-da-ga__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 50px auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.page-da-ga__guide-step {
    background-color: #ffffff; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-da-ga__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2F6BFF; /* Main color */
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin: -55px auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(47, 107, 255, 0.4);
}

.page-da-ga__guide-step:first-child .page-da-ga__step-number {
    margin-top: 0; /* Adjust for first step */
}

.page-da-ga__step-title {
    font-size: 1.4em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-da-ga__step-text {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
}

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

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

.page-da-ga__tip-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.page-da-ga__tip-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-da-ga__tip-card-title {
    font-size: 1.4em;
    color: #ffffff;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-da-ga__tip-card-text {
    font-size: 1em;
    color: #f0f0f0;
    padding: 0 20px 20px;
}

/* Promo Section */
.page-da-ga__promo-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

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

.page-da-ga__promo-card {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.page-da-ga__promo-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-da-ga__promo-card-title {
    font-size: 1.5em;
    color: #000000; /* Custom Color_1776249996415 */
    padding: 20px 20px 10px;
    font-weight: bold;
}

.page-da-ga__promo-card-text {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    padding: 0 20px 20px;
}

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

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

.page-da-ga__faq-item {
    background-color: #F4F7FB; /* Background color */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-da-ga__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    cursor: pointer;
    list-style: none; /* Remove default marker for details summary */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.page-da-ga__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

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

.page-da-ga__faq-toggle {
    font-size: 1.5em;
    color: #2F6BFF; /* Main color */
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-da-ga__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
}

/* Conclusion Section */
.page-da-ga__conclusion-section {
    padding: 60px 0;
    background-color: #2F6BFF; /* Main color */
    color: #ffffff;
    text-align: center;
}

.page-da-ga__conclusion-content {
    max-width: 900px;
}

/* General image styling */
.page-da-ga img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-da-ga__hero-title {
        font-size: clamp(2em, 4.5vw, 3em);
    }
    .page-da-ga__section-title {
        font-size: 2em;
    }
    .page-da-ga__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-da-ga__hero-content {
        order: 2;
        text-align: center;
    }
    .page-da-ga__hero-image {
        order: 1;
        margin-bottom: 30px;
    }
    .page-da-ga__hero-cta-buttons {
        justify-content: center;
    }
    .page-da-ga__promo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* General responsive for all containers and images */
    .page-da-ga__container,
    .page-da-ga__hero-container,
    .page-da-ga__intro-section,
    .page-da-ga__content-area,
    .page-da-ga__guide-section,
    .page-da-ga__tips-section,
    .page-da-ga__promo-section,
    .page-da-ga__faq-section,
    .page-da-ga__conclusion-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-da-ga img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* HERO Section */
    .page-da-ga__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
        padding-bottom: 40px !important;
    }
    .page-da-ga__hero-title {
        font-size: 2em !important;
    }
    .page-da-ga__hero-description {
        font-size: 1em !important;
    }
    .page-da-ga__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-da-ga__btn {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 15px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-da-ga__btn--center {
        width: 100% !important;
    }

    /* Intro Section */
    .page-da-ga__section-title {
        font-size: 1.8em !important;
    }
    .page-da-ga__section-description {
        font-size: 0.9em !important;
        margin-bottom: 30px !important;
    }
    .page-da-ga__intro-grid {
        grid-template-columns: 1fr;
    }
    .page-da-ga__icon-box-media {
        width: 160px;
        height: 160px;
        border-width: 3px;
    }
    .page-da-ga__icon-box-title {
        font-size: 1.3em !important;
    }

    /* Content Area */
    .page-da-ga__feature-list {
        grid-template-columns: 1fr;
    }
    .page-da-ga__feature-title {
        font-size: 1.2em !important;
    }

    /* Guide Section */
    .page-da-ga__guide-steps {
        grid-template-columns: 1fr;
    }
    .page-da-ga__guide-step {
        padding-top: 50px;
    }
    .page-da-ga__step-number {
        margin-top: -35px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    /* Tips Section */
    .page-da-ga__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-da-ga__tip-card-image {
        height: 180px;
    }
    .page-da-ga__tip-card-title {
        font-size: 1.3em !important;
    }

    /* Promo Section */
    .page-da-ga__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-da-ga__promo-card-image {
        height: 180px;
    }
    .page-da-ga__promo-card-title {
        font-size: 1.3em !important;
    }

    /* FAQ Section */
    .page-da-ga__faq-question {
        font-size: 1.1em !important;
        padding: 15px 20px !important;
    }
    .page-da-ga__faq-answer {
        padding: 0 20px 15px !important;
    }
    .page-da-ga__faq-toggle {
        font-size: 1.3em !important;
    }
}