:root {
    --forest-green: #0a4d2e;
    --cream-bg: #f8f7f2;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--cream-bg);
    color: var(--forest-green);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.main-container {
    width: 90%;
    max-width: 1000px;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    margin-bottom: 4rem;
}

.brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 0.85;
    margin: 0;
    font-weight: 400;
    letter-spacing: -2px;
}

.italic-bold {
    font-weight: 700;
    font-style: italic;
}

.main-tag {
    margin-top: 5rem;
    text-align: center;
}

.main-tag h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin: 0;
}

.main-tag p {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 300;
    margin: 0;
}

.arrow {
    font-size: 3rem;
    text-align: left;
    margin-top: 2rem;
    margin-left: 5%;
}

.cta-section {
    text-align: right;
    margin: 4rem 0;
}

.agenda-text {
    font-style: italic;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn-whatsapp {
    display: inline-block;
    background-color: var(--forest-green);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

footer {
    border-top: 1px solid rgba(10, 77, 46, 0.1);
    padding-top: 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.bold { font-weight: 700; }

.ig-pill {
    display: inline-block;
    border: 1.5px dashed var(--forest-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--forest-green);
    font-weight: 700;
    font-style: italic;
}

@media (max-width: 768px) {
    .footer-grid { flex-direction: column; text-align: left; }
    .cta-section { text-align: left; }
}