body {
    margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0A2540;
}
nav {
    background: white;
    display: flex; justify-content: space-between;
    align-items: center; padding: 20px 60px;
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 10;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em; font-weight: 600;
    color: #0A2540;
}
nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
nav a {
    text-decoration: none; color: #0A2540;
    font-weight: 600; position: relative; padding-bottom: 4px;
}
nav a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0%; height: 2px; background: #D4AF37;
    transition: width 0.3s ease;
}
nav a:hover::after { width: 100%; }

.hero {
    background: linear-gradient(120deg, #0A2540, #1a2c4d);
    color: white; text-align: center; padding: 120px 20px;
}
.hero-content { max-width: 800px; margin: auto; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em; margin-bottom: 15px; letter-spacing: 0.5px;
}
.hero p { font-size: 1.1em; margin-bottom: 40px; opacity: 0.9; }
.btn {
    background: linear-gradient(90deg, #D4AF37, #e6c059);
    color: white; padding: 12px 28px;
    border-radius: 5px; text-decoration: none;
    font-weight: 700; box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.btn:hover { filter: brightness(1.15); }
section {
    padding: 80px 20px; max-width: 1100px; margin: auto; text-align: center;
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em; margin-bottom: 40px; position: relative;
    display: inline-block;
}
h2::after {
    content: ''; display: block; width: 80px; height: 3px;
    background: #D4AF37; margin: 10px auto 0;
}
.grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.card {
    background: #fafafa; border-radius: 10px;
    border: 1px solid #eee; padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.card.highlight {
    border: 1.5px solid #D4AF37; background: #fffbe8;
}
blockquote {
    font-style: italic;
    margin-top: 40px; color: #333;
    border-left: 3px solid #D4AF37;
    padding-left: 15px;
}
.contact-buttons {
    display: flex; justify-content: center; gap: 20px; margin: 30px 0;
}
.email-btn {
    background: linear-gradient(90deg, #D4AF37, #e6c059);
}
.whatsapp-btn {
    background: linear-gradient(90deg, #25D366, #128C7E);
}
.whatsapp-btn:hover, .email-btn:hover {
    filter: brightness(1.15);
}
footer {
    background: #0A2540; color: white; text-align: center;
    padding: 30px; font-size: 0.9em;
    border-top: 3px solid #D4AF37;
}
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: white;
    font-size: 1.6em;
    padding: 14px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 99;
    transition: transform 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
