.page-da-ga {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default body background */
}

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

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

.page-da-ga__section-title--light {
    color: #FFFFFF;
}

.page-da-ga__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.page-da-ga__btn-primary,
.page-da-ga__btn-secondary,
.page-da-ga__btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* For responsive buttons */
}

.page-da-ga__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

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

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

.page-da-ga__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #1e87b7;
    border-color: #1e87b7;
}

.page-da-ga__btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    margin-top: 15px;
}

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

/* Dark background sections */
.page-da-ga__dark-section {
    background-color: #26A9E0; /* Brand primary color */
    color: #FFFFFF;
}

.page-da-ga__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

/* Images responsive base */
.page-da-ga img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HERO Section */
.page-da-ga__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background: linear-gradient(to right, #e0f2f7, #f7fcfd); /* Light gradient background */
}

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

.page-da-ga__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
    color: #1e1765; /* Darker text for contrast on light background */
}

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

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

.page-da-ga__hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

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

.page-da-ga__hero-visual {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.page-da-ga__feature-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-da-ga__feature-item:hover {
    transform: translateY(-5px);
}

.page-da-ga__icon-box-media {
    width: 180px; /* Display size, request 400x400 */
    height: 180px;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #e0f2f7;
    box-shadow: 0 0 0 5px rgba(38, 169, 224, 0.2);
}

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

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

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

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

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

.page-da-ga__guide-item {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on blue background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-da-ga__guide-image {
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-da-ga__guide-step-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

/* Types Section */
.page-da-ga__types-section {
    padding: 60px 0;
}

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

.page-da-ga__bet-type-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-da-ga__bet-type-image {
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-da-ga__bet-type-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-da-ga__bet-type-text {
    font-size: 1em;
    color: #555555;
}

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

.page-da-ga__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
    text-align: left;
}

.page-da-ga__tips-list li {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.page-da-ga__tips-list li::before {
    content: "✓";
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-da-ga__tip-highlight {
    color: #FFFFFF;
}

.page-da-ga__tips-image {
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.page-da-ga__benefits-section {
    padding: 60px 0;
}

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

.page-da-ga__benefit-card {
    background-color: #f7fcfd; /* Lighter background for cards */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.page-da-ga__benefit-text {
    font-size: 1em;
    color: #555555;
}

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

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

.page-da-ga__faq-item {
    background-color: #f7fcfd;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px 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.15em;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    background-color: #e0f2f7;
    border-bottom: 1px solid #d0e8ef;
    user-select: none;
    list-style: none; /* For details/summary */
}

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

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

.page-da-ga__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0;
}

.page-da-ga__faq-item[open] .page-da-ga__faq-toggle {
    content: "−"; /* Change to minus when open */
}

.page-da-ga__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #555555;
    background-color: #FFFFFF;
    border-top: 1px solid #f0f0f0;
}

/* Final CTA Section */
.page-da-ga__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

.page-da-ga__cta-final-section .page-da-ga__cta-buttons {
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-da-ga__section-title {
        font-size: 2em;
    }
    .page-da-ga__hero-container {
        padding: 30px 16px;
    }
    .page-da-ga__main-title {
        font-size: clamp(2.2em, 3.5vw, 3em);
    }
    .page-da-ga__hero-description {
        font-size: 1.1em;
    }
    .page-da-ga__features-grid,
    .page-da-ga__guide-steps,
    .page-da-ga__bet-types-grid,
    .page-da-ga__benefits-grid {
        gap: 20px;
    }
    .page-da-ga__icon-box-media {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-da-ga__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 40px;
    }
    .page-da-ga__hero-container {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
    }
    .page-da-ga__hero-content {
        text-align: center;
        flex: 1 1 100%;
        min-width: unset;
    }
    .page-da-ga__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-da-ga__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-da-ga__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
    }
    .page-da-ga__btn-primary,
    .page-da-ga__btn-secondary,
    .page-da-ga__btn-outline {
        max-width: 100% !important;
        width: 100% !important;
        padding: 10px 15px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Universal container padding and width for content sections */
    .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;
    }

    /* General sections and titles */
    .page-da-ga__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-da-ga__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* Intro Section */
    .page-da-ga__intro-section {
        padding: 40px 0;
    }
    .page-da-ga__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-da-ga__icon-box-media {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    .page-da-ga__feature-title {
        font-size: 1.2em;
    }
    .page-da-ga__feature-text {
        font-size: 0.9em;
    }

    /* Guide Section */
    .page-da-ga__guide-section {
        padding: 40px 0;
    }
    .page-da-ga__guide-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-da-ga__guide-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-da-ga__guide-item {
        padding: 20px;
    }
    .page-da-ga__guide-step-title {
        font-size: 1.3em;
    }

    /* Types Section */
    .page-da-ga__types-section {
        padding: 40px 0;
    }
    .page-da-ga__bet-types-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-da-ga__bet-type-card {
        padding: 20px;
    }
    .page-da-ga__bet-type-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-da-ga__bet-type-title {
        font-size: 1.2em;
    }

    /* Tips Section */
    .page-da-ga__tips-section {
        padding: 40px 0;
    }
    .page-da-ga__tips-list {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 1em;
    }
    .page-da-ga__tips-list li {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    .page-da-ga__tips-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Benefits Section */
    .page-da-ga__benefits-section {
        padding: 40px 0;
    }
    .page-da-ga__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-da-ga__benefit-card {
        padding: 25px;
    }
    .page-da-ga__benefit-title {
        font-size: 1.2em;
    }

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

    /* Final CTA Section */
    .page-da-ga__cta-final-section {
        padding: 50px 0;
    }
    .page-da-ga__cta-final-section .page-da-ga__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    /* Universal image responsive styles */
    .page-da-ga img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}