/* style/da-ga.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A1A1A; /* Dark Grey */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #2c2c2c;
    --border-color: #e0e0e0;
}

.page-da-ga {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

.page-da-ga .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-da-ga h1, .page-da-ga h2, .page-da-ga h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-da-ga h1 {
    font-size: 3.2em;
    text-align: center;
    color: var(--text-light);
}

.page-da-ga h2 {
    font-size: 2.5em;
    text-align: center;
    padding-bottom: 15px;
    position: relative;
    margin-top: 40px;
}

.page-da-ga h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-da-ga h3 {
    font-size: 1.8em;
    margin-top: 30px;
    color: var(--primary-color);
}

.page-da-ga p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-da-ga ul, .page-da-ga ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-da-ga ul li, .page-da-ga ol li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-da-ga a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-da-ga a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Hero Section */
.page-da-ga .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: var(--secondary-color); /* Fallback for image */
    overflow: hidden;
}

.page-da-ga .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-da-ga .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-da-ga .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim the image for text readability */
}

.page-da-ga .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-da-ga .hero-content p {
    color: var(--text-light);
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-da-ga .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.page-da-ga .cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
.page-da-ga .intro-section, .page-da-ga .guide-section, .page-da-ga .advantages-section, .page-da-ga .promotions-section, .page-da-ga .cta-final-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-da-ga .types-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.page-da-ga .type-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-da-ga .type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-da-ga .type-card img {
    max-width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-da-ga .type-card h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-da-ga .advantages-section ul li, .page-da-ga .promotions-section ul li {
    position: relative;
    padding-left: 30px;
}

.page-da-ga .advantages-section ul li::before, .page-da-ga .promotions-section ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-da-ga .cta-final-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-da-ga .cta-final-section h2 {
    color: var(--primary-color);
    font-size: 2.8em;
}

.page-da-ga .cta-final-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: var(--text-light);
}

.page-da-ga .cta-final-section img {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary-color);
}

/* FAQ Section */
.page-da-ga .faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.page-da-ga .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.page-da-ga .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-da-ga .faq-question:hover {
    background: #f0f0f0;
}

.page-da-ga .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--secondary-color);
}

.page-da-ga .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-da-ga .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #fff;
    padding: 0 25px;
    border-top: 1px solid var(--border-color);
}

.page-da-ga .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 25px;
    border-radius: 0 0 8px 8px;
}

.page-da-ga .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-da-ga h1 {
        font-size: 2.8em;
    }
    .page-da-ga h2 {
        font-size: 2em;
    }
    .page-da-ga h3 {
        font-size: 1.6em;
    }
    .page-da-ga .hero-section {
        padding: 60px 15px;
    }
    .page-da-ga .hero-content p {
        font-size: 1.1em;
    }
    .page-da-ga .cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-da-ga .type-card img {
        height: 200px;
    }
    .page-da-ga .intro-section, .page-da-ga .guide-section, .page-da-ga .advantages-section, .page-da-ga .promotions-section, .page-da-ga .cta-final-section, .page-da-ga .types-section, .page-da-ga .faq-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .page-da-ga h1 {
        font-size: 2.2em;
    }
    .page-da-ga h2 {
        font-size: 1.8em;
    }
    .page-da-ga h3 {
        font-size: 1.4em;
    }
    .page-da-ga p, .page-da-ga ul li, .page-da-ga ol li {
        font-size: 1em;
    }
    .page-da-ga .hero-section {
        padding: 40px 15px;
    }
    .page-da-ga .hero-content {
        padding: 15px;
    }
    .page-da-ga .cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-da-ga .type-cards {
        grid-template-columns: 1fr;
    }
    .page-da-ga .type-card {
        padding: 20px;
    }
    .page-da-ga .type-card img {
        height: 180px;
    }
    .page-da-ga .cta-final-section h2 {
        font-size: 2em;
    }
    .page-da-ga .cta-final-section p {
        font-size: 1em;
    }
    .page-da-ga .faq-question {
        padding: 15px 20px;
    }
    .page-da-ga .faq-question h3 {
        font-size: 1.1em;
    }
    .page-da-ga .faq-toggle {
        font-size: 20px;
    }
    .page-da-ga .faq-answer {
        padding: 0 20px;
    }
    .page-da-ga .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-da-ga h1 {
        font-size: 1.8em;
    }
    .page-da-ga h2 {
        font-size: 1.6em;
    }
    .page-da-ga h3 {
        font-size: 1.2em;
    }
    .page-da-ga .hero-content {
        padding: 10px;
    }
    .page-da-ga .hero-content p {
        font-size: 0.9em;
    }
    .page-da-ga .cta-button {
        font-size: 0.9em;
        padding: 8px 20px;
    }
    .page-da-ga .type-card img {
        height: 150px;
    }
    .page-da-ga .faq-question h3 {
        font-size: 1em;
    }
}