@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');
body, html { margin: 0; padding: 0; font-family: 'Nunito', sans-serif; color: #555; background: #fff; display: flex; flex-direction: column; min-height: 100vh; }
.top-bar { background: #e74c3c; color: white; text-align: center; padding: 8px; font-weight: bold; font-size: 0.9rem; letter-spacing: 1px; }
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: white; border-bottom: 1px solid #eee; }
.logo-area { display: flex; align-items: center; gap: 15px; cursor: pointer; }
.logo-text { font-size: 1.5rem; font-weight: 900; color: #2c3e50; display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span { font-size: 0.8rem; font-weight: 400; color: #1abc9c; text-transform: uppercase; letter-spacing: 2px; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { color: #555; text-decoration: none; font-weight: 700; cursor: pointer; transition: color 0.2s; }
nav a:hover, nav a.active { color: #1abc9c; }
.btn-nav { background: #1abc9c; padding: 10px 20px; border-radius: 30px; color: white !important; }
.btn-nav:hover { background: #16a085; }
#pages-container { flex: 1; }
.page { display: none; }
.page.active { display: block; animation: slideUp 0.5s ease; }
.split-hero { display: flex; min-height: 60vh; }
.hero-text { flex: 1; padding: 60px 5%; display: flex; flex-direction: column; justify-content: center; }
.hero-text h1 { font-size: 3.5rem; color: #2c3e50; line-height: 1.2; margin-top: 0; }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; }
.hero-image { flex: 1; background-size: cover; background-position: center; }
.primary { background: #1abc9c; color: white; border: none; padding: 15px 30px; font-size: 1.1rem; font-weight: bold; border-radius: 30px; cursor: pointer; display: inline-block; width: fit-content; }
.primary:hover { background: #16a085; }
.container { max-width: 1200px; margin: 0 auto; padding: 60px 5%; }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; color: #2c3e50; margin-bottom: 40px; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 50px; height: 3px; background: #1abc9c; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-box { background: #f9fbfb; border: 1px solid #eee; padding: 40px 30px; border-radius: 12px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.service-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.service-box h3 { color: #2c3e50; font-size: 1.5rem; }
.contact-section { display: flex; gap: 50px; align-items: center; }
.contact-info, .contact-form-wrap { flex: 1; }
form { display: flex; flex-direction: column; gap: 20px; background: #f9fbfb; padding: 40px; border-radius: 12px; border: 1px solid #1abc9c; }
form input, form select { padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Nunito', sans-serif; font-size: 1rem; }
footer { background: #2c3e50; color: white; margin-top: auto; }
footer .container { display: flex; justify-content: space-between; align-items: center; padding: 30px 5%; }
footer a { color: #1abc9c; text-decoration: none; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
