/* Hero Section */
.hero-hosting {
    background: var(--primary-color-t2);
    text-align: center;
    padding: 80px 20px;
}
.hero-hosting h1 {
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 10px;
}
.hero-hosting p {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px auto;
}
.btn-primary-large {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}
.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Benefits Section */
.benefits-section { padding: 60px 20px; }
.benefits-section h2 { text-align: center; margin-bottom: 40px; }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit-card {
    background: var(--header-bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.dark-theme .benefit-card { background: var(--header-bg-dark); }

/* Agreement Section */
.agreement-section {
    padding: 60px 20px;
    background: var(--primary-color-t2);
}
.agreement-section .container {
    max-width: 900px;
}
.agreement-section h2 { margin-top: 0; margin-bottom: 20px; }
.agreement-section ul { padding-left: 20px; }
.agreement-section li { margin-bottom: 10px; line-height: 1.6; }
/* ... (existing styles for hero, benefits, agreement) ... */

/* "Who Should Host" Section - reuses benefit styles */
.who-should-host {
    padding: 60px 20px;
    background: var(--header-bg-light);
}
.dark-theme .who-should-host {
    background: var(--header-bg-dark);
}
.who-should-host h2 { text-align: center; margin-bottom: 40px; }

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
}
.faq-section .container {
    max-width: 900px;
}
.faq-section h2 { text-align: center; margin-bottom: 40px; }
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    border: 1px solid var(--primary-color-t2);
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: inherit;
}
.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}
.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
    line-height: 1.7;
    opacity: 0.9;
}
/* Active state for FAQ */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust if you have very long answers */
}