:root {
    --primary-color: #ffc107;
    /* Gold/Yellow for attention */
    --secondary-color: #a47c27;
    /* Darker Gold */
    --accent-color: #e53935;
    /* Red for urgency/price */
    --success-color: #2e7d32;
    /* Green for guarantee/success/CTA */
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --bg-dark: #121212;
    --bg-light: #ffffff;
    --bg-accent: #f9f9f9;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif;
    margin-top: 0;
}

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

section {
    padding: 40px 0;
}

/* Section Themes */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--text-light);
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-accent {
    background-color: var(--bg-accent);
    color: var(--text-dark);
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: normal;
    color: inherit;
    opacity: 0.9;
}

/* Components */
.cta-button {
    display: inline-block;
    background-color: var(--success-color);
    color: white !important;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.6);
    background-color: #1b5e20;
}

/* FAQ Details */
details {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

details[open] {
    background: rgba(255, 255, 255, 0.1);
}

summary {
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 30px 0;
    }
}

/* Text Gradient Utility */
.text-gradient {
    background: linear-gradient(to right, #ffffff 0%, #ffc107 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffc107;
    /* Fallback */
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}