*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--primary:#1a365d;--secondary:#2c5282;--accent:#ed8936;--light:#f7fafc;--dark:#1a202c;--text:#2d3748;--muted:#718096;--white:#ffffff;--border:#e2e8f0;--success:#48bb78}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',system-ui,-apple-system,sans-serif;line-height:1.7;color:var(--text);background:var(--white)}
img{max-width:100%;height:auto;display:block;object-fit:cover}
a{color:var(--secondary);text-decoration:none;transition:color .2s}
a:hover{color:var(--accent)}
h1,h2,h3,h4{color:var(--primary);line-height:1.3;font-weight:700}
h1{font-size:clamp(2rem,5vw,3rem)}
h2{font-size:clamp(1.5rem,4vw,2.25rem)}
h3{font-size:clamp(1.25rem,3vw,1.5rem)}
p{margin-bottom:1rem}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}
.btn{display:inline-block;padding:.875rem 2rem;border-radius:4px;font-weight:600;cursor:pointer;transition:all .25s;border:none;font-size:1rem}
.btn-primary{background:var(--accent);color:var(--white)}
.btn-primary:hover{background:#dd6b20;color:var(--white)}
.btn-secondary{background:var(--primary);color:var(--white)}
.btn-secondary:hover{background:var(--secondary);color:var(--white)}
.btn-outline{background:transparent;border:2px solid var(--primary);color:var(--primary)}
.btn-outline:hover{background:var(--primary);color:var(--white)}

.ad-disclosure{background:var(--dark);color:var(--muted);font-size:.75rem;padding:.5rem 0;text-align:center}
.header{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:100}
.header-inner{display:flex;justify-content:space-between;align-items:center;padding:1rem 0}
.logo{font-size:1.5rem;font-weight:700;color:var(--primary)}
.logo span{color:var(--accent)}
.nav{display:flex;gap:2rem;align-items:center}
.nav a{color:var(--text);font-weight:500;padding:.5rem 0;position:relative}
.nav a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--accent);transition:width .25s}
.nav a:hover::after{width:100%}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.5rem}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--primary);margin:5px 0;transition:all .3s}
@media(max-width:768px){
.nav{position:fixed;top:70px;left:0;right:0;background:var(--white);flex-direction:column;padding:2rem;gap:1.5rem;transform:translateY(-120%);transition:transform .3s;box-shadow:0 4px 12px rgba(0,0,0,.1)}
.nav.active{transform:translateY(0)}
.nav-toggle{display:block}
}

.split{display:flex;min-height:80vh;align-items:stretch}
.split-left,.split-right{flex:1;display:flex;flex-direction:column;justify-content:center;padding:4rem}
.split-left{background:var(--light)}
.split-right{position:relative;background-color:var(--secondary)}
.split-right img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.split-content{max-width:500px}
.split-content h1{margin-bottom:1.5rem}
.split-content p{font-size:1.125rem;color:var(--muted);margin-bottom:2rem}
@media(max-width:900px){
.split{flex-direction:column;min-height:auto}
.split-right{min-height:400px}
.split-left,.split-right{padding:3rem 1.5rem}
}

.section{padding:5rem 0}
.section-alt{background:var(--light)}
.section-dark{background:var(--primary);color:var(--white)}
.section-dark h2,.section-dark h3{color:var(--white)}
.section-dark p{color:rgba(255,255,255,.85)}
.section-header{text-align:center;max-width:700px;margin:0 auto 3rem}
.section-header p{color:var(--muted);font-size:1.125rem;margin-top:1rem}

.feature-grid{display:flex;flex-wrap:wrap;gap:2rem;margin-top:3rem}
.feature-card{flex:1 1 300px;background:var(--white);padding:2rem;border-radius:8px;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.feature-card h3{margin-bottom:1rem}
.feature-icon{width:56px;height:56px;background:var(--accent);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.feature-icon svg{width:28px;height:28px;stroke:var(--white)}

.services-list{display:flex;flex-direction:column;gap:2rem}
.service-item{display:flex;gap:2rem;background:var(--white);border-radius:8px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.service-item:nth-child(even){flex-direction:row-reverse}
.service-image{flex:0 0 40%;background-color:var(--secondary);position:relative;min-height:280px}
.service-image img{position:absolute;inset:0;width:100%;height:100%}
.service-content{flex:1;padding:2.5rem;display:flex;flex-direction:column;justify-content:center}
.service-content h3{margin-bottom:1rem}
.service-price{font-size:1.5rem;font-weight:700;color:var(--accent);margin-top:1rem}
.service-price span{font-size:.875rem;color:var(--muted);font-weight:400}
@media(max-width:768px){
.service-item,.service-item:nth-child(even){flex-direction:column}
.service-image{min-height:200px}
}

.testimonials{display:flex;gap:2rem;flex-wrap:wrap}
.testimonial{flex:1 1 320px;background:var(--white);padding:2rem;border-radius:8px;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.testimonial-text{font-style:italic;margin-bottom:1.5rem;position:relative;padding-left:1.5rem;border-left:3px solid var(--accent)}
.testimonial-author{font-weight:600;color:var(--primary)}
.testimonial-role{font-size:.875rem;color:var(--muted)}

.about-split{display:flex;gap:4rem;align-items:center}
.about-image{flex:0 0 45%;background-color:var(--secondary);border-radius:8px;overflow:hidden;position:relative;min-height:400px}
.about-image img{position:absolute;inset:0;width:100%;height:100%}
.about-content{flex:1}
.about-content h2{margin-bottom:1.5rem}
.about-content p{color:var(--muted)}
@media(max-width:900px){
.about-split{flex-direction:column}
.about-image{width:100%;min-height:300px}
}

.stats{display:flex;justify-content:space-around;flex-wrap:wrap;gap:2rem;padding:3rem 0}
.stat{text-align:center}
.stat-number{font-size:3rem;font-weight:700;color:var(--accent)}
.stat-label{color:rgba(255,255,255,.8);margin-top:.5rem}

.form-section{max-width:600px;margin:0 auto}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;margin-bottom:.5rem;font-weight:500;color:var(--primary)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.875rem 1rem;border:1px solid var(--border);border-radius:4px;font-size:1rem;font-family:inherit;transition:border-color .2s}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--accent)}
.form-group textarea{min-height:120px;resize:vertical}

.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-item{display:flex;gap:1rem;align-items:flex-start}
.contact-icon{width:48px;height:48px;background:var(--accent);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-icon svg{width:24px;height:24px;stroke:var(--white)}
.contact-details h4{margin-bottom:.25rem}
.contact-details p{color:var(--muted);margin:0}

.map-container{height:300px;background:var(--secondary);border-radius:8px;overflow:hidden;margin-top:2rem}

.footer{background:var(--dark);color:var(--light);padding:4rem 0 2rem}
.footer-grid{display:flex;flex-wrap:wrap;gap:3rem;margin-bottom:3rem}
.footer-col{flex:1 1 200px}
.footer-col h4{color:var(--white);margin-bottom:1.5rem;font-size:1.125rem}
.footer-col p{color:var(--muted);font-size:.875rem;line-height:1.8}
.footer-col a{display:block;color:var(--muted);padding:.25rem 0;font-size:.875rem}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:2rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;font-size:.875rem;color:var(--muted)}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap}

.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--dark);color:var(--light);padding:1.5rem;z-index:1000;transform:translateY(100%);transition:transform .3s}
.cookie-banner.visible{transform:translateY(0)}
.cookie-inner{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;gap:2rem;flex-wrap:wrap}
.cookie-text{flex:1;font-size:.875rem}
.cookie-text a{color:var(--accent)}
.cookie-buttons{display:flex;gap:1rem}
.cookie-btn{padding:.625rem 1.25rem;border-radius:4px;cursor:pointer;font-weight:500;border:none;font-size:.875rem}
.cookie-accept{background:var(--accent);color:var(--white)}
.cookie-reject{background:transparent;border:1px solid var(--muted);color:var(--muted)}

.thanks-container{min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:4rem 1.5rem}
.thanks-icon{width:80px;height:80px;background:var(--success);border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:2rem}
.thanks-icon svg{width:40px;height:40px;stroke:var(--white)}
.thanks-container h1{margin-bottom:1rem}
.thanks-container p{color:var(--muted);max-width:500px;margin-bottom:2rem}

.legal-content{max-width:800px;margin:0 auto;padding:4rem 1.5rem}
.legal-content h1{margin-bottom:2rem;padding-bottom:1rem;border-bottom:2px solid var(--border)}
.legal-content h2{margin:2rem 0 1rem;font-size:1.375rem}
.legal-content p,.legal-content li{color:var(--muted);margin-bottom:1rem}
.legal-content ul{padding-left:1.5rem;margin-bottom:1.5rem}
.legal-content ul li{margin-bottom:.5rem}

.disclaimer{background:var(--light);border-left:4px solid var(--accent);padding:1.5rem;margin:2rem 0;font-size:.875rem;color:var(--muted)}

.cta-section{text-align:center;padding:4rem 2rem;background:linear-gradient(135deg,var(--primary) 0%,var(--secondary) 100%);color:var(--white);border-radius:8px;margin:3rem 0}
.cta-section h2{color:var(--white);margin-bottom:1rem}
.cta-section p{opacity:.9;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}
.cta-section .btn-primary{background:var(--accent);font-size:1.125rem;padding:1rem 2.5rem}

.page-header{background:var(--primary);color:var(--white);padding:4rem 0;text-align:center}
.page-header h1{color:var(--white);margin-bottom:.5rem}
.page-header p{opacity:.8}

.breadcrumb{padding:1rem 0;font-size:.875rem}
.breadcrumb a{color:var(--muted)}
.breadcrumb span{color:var(--text);margin:0 .5rem}
