/* style/dai-ly-79sodo.css */

/* Variables and Base Styles */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login-color: #EA7C07;
}

.page-dai-ly-79sodo {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--secondary-color); /* Default light background */
}

.page-dai-ly-79sodo__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

/* Hero Section */
.page-dai-ly-79sodo__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: var(--secondary-color); /* Light background for hero */
}

.page-dai-ly-79sodo__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-dai-ly-79sodo__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    color: var(--text-dark);
}

.page-dai-ly-79sodo__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-dai-ly-79sodo__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.page-dai-ly-79sodo__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-dai-ly-79sodo__btn-primary,
.page-dai-ly-79sodo__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button adapts to container */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
}

.page-dai-ly-79sodo__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-dai-ly-79sodo__btn-primary:hover {
    background-color: #1e8bc3; /* A slightly darker shade of primary color */
    border-color: #1e8bc3;
}

.page-dai-ly-79sodo__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-dai-ly-79sodo__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-dai-ly-79sodo__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-dai-ly-79sodo__hero-side-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Section Titles and Descriptions */
.page-dai-ly-79sodo__section-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.page-dai-ly-79sodo__section-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.page-dai-ly-79sodo__benefits-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

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

.page-dai-ly-79sodo__benefit-card {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-dai-ly-79sodo__benefit-card:hover {
    transform: translateY(-5px);
}

.page-dai-ly-79sodo__card-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
}

.page-dai-ly-79sodo__card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-dai-ly-79sodo__card-text {
    font-size: 16px;
    color: var(--text-dark);
}

/* How to Join Section */
.page-dai-ly-79sodo__how-to-join-section {
    background-color: var(--primary-color); /* Dark background for this section */
    color: var(--text-light); /* Light text for dark background */
    padding: 60px 0;
}

.page-dai-ly-79sodo__how-to-join-section .page-dai-ly-79sodo__section-title,
.page-dai-ly-79sodo__how-to-join-section .page-dai-ly-79sodo__section-description {
    color: var(--text-light);
}

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

.page-dai-ly-79sodo__step-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-dai-ly-79sodo__step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-dai-ly-79sodo__step-text {
    font-size: 16px;
    color: var(--text-light);
}

.page-dai-ly-79sodo__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* FAQ Section */
.page-dai-ly-79sodo__faq-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

.page-dai-ly-79sodo__faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}