/* GLOBAL STYLES */
:root {
    --primary-green: #4f6d3b; /* Replicated from your buttons */
    --text-dark: #1a1a1a;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.narrow { max-width: 800px; }
.center-text { text-align: center; }
.grey-bg { background-color: var(--bg-light); }

/* HEADER */
header { padding: 20px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 80px; }

/* HERO */
.hero { background: linear-gradient(135deg, #e0e4e1 0%, #ffffff 100%); padding: 60px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.hero h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; }
.btn { 
    display: inline-block; background: #1a1a1a; color: white; padding: 15px 35px; 
    text-decoration: none; border-radius: 30px; font-weight: bold; margin: 20px 0;
}
.btn-green { background: var(--primary-green); border: none; cursor: pointer; width: 200px; }

/* SECTION TYPOGRAPHY */
.section-title { color: var(--primary-green); text-align: center; font-size: 2.2rem; }
.divider { width: 50px; height: 2px; background: #ddd; margin: 20px auto; }
.center-logo { display: block; margin: 30px auto; width: 150px; }

/* BIO SECTION */
.bio-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; margin-top: 40px; }
.bio-image img { width: 100%; border-radius: 4px; }
.credentials { font-weight: bold; color: #666; font-size: 0.9rem; }

/* CONTACT FORM */
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px;
}
.form-footer { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 20px; }
.btn-whatsapp { background: #4a5d61; width: auto; padding: 12px 25px; display: block; margin: 20px auto; width: fit-content;}

/* FOOTER */
footer { background: #000; color: #fff; padding: 40px 0; text-align: center; }
.footer-content { display: flex; justify-content: space-between; border-bottom: 1px solid #333; padding-bottom: 20px; }
.privacy { margin-top: 20px; font-size: 0.8rem; }
.privacy a { color: #fff; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-grid, .bio-grid { grid-template-columns: 1fr; text-align: center; }
}