:root {
    --primary: #0A192F;
    --accent: #D4AF37;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease-in-out;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-main); background: var(--bg-light); line-height: 1.6; overflow-x: hidden; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--accent); color: #000; padding: 8px; z-index: 10000; transition: top 0.2s; }
.skip-link:focus { top: 0; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Header & Nav */
header { background: var(--bg-white); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo-area a { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.logo-area img { width: 40px; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a:hover { color: var(--accent); }
.burger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); background: none; border: none;}

/* Unique Graphic Element */
.graphic-element { position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); opacity: 0.1; top: -50px; right: -50px; z-index: -1; pointer-events: none; border-radius: 50%; }

/* Sections */
section { padding: 80px 5%; position: relative; }
.hero { background: var(--primary); color: var(--bg-white); display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; overflow: hidden; padding-top: 120px; padding-bottom: 120px;}
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: var(--bg-white);}
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }
.hero-image { position: relative; }
.hero-image img { border-radius: 20px; border: 2px solid var(--accent); transform: rotate(2deg); transition: var(--transition); }
.hero-image img:hover { transform: rotate(0deg); }

.btn { display: inline-block; padding: 12px 30px; background: var(--accent); color: var(--primary); font-weight: 600; border-radius: 5px; border: none; cursor: pointer; text-align: center; font-family: var(--font-heading); }
.btn:hover { background: #b5952f; transform: translateY(-2px); }

/* Features Asymmetric */
.features { display: flex; flex-wrap: wrap; gap: 40px; background: var(--bg-white); align-items: center; }
.features-img { flex: 1; min-width: 300px; }
.features-img img { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.features-text { flex: 1.2; min-width: 300px; }
.features-text h2 { font-family: var(--font-heading); color: var(--primary); font-size: 2.5rem; margin-bottom: 20px; }
.features-text ul { list-style: none; margin-top: 20px; }
.features-text li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.features-text li i { color: var(--accent); }

/* Random Blocks */
.random-block { background: var(--bg-light); text-align: center; }
.random-block h2 { font-family: var(--font-heading); color: var(--primary); font-size: 2.5rem; margin-bottom: 20px; }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: var(--bg-white); padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: left; border-top: 4px solid var(--accent); }
.card img { margin-bottom: 20px; height: 200px; width: 100%; object-fit: cover; }

/* Form Section */
.form-section { background: var(--primary); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.form-wrapper { background: white; padding: 40px; border-radius: 10px; color: var(--text-main); }
.form-wrapper h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 20px; color: var(--primary); }
form { display: flex; flex-direction: column; gap: 15px; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: var(--font-body); }
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
.checkbox-group { display: flex; gap: 10px; font-size: 0.85rem; color: var(--text-light); }
.checkbox-group input { width: auto; margin-top: 4px; }

/* FAQ */
.faq-item { background: var(--bg-white); margin-bottom: 10px; border-radius: 5px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.faq-question { padding: 20px; cursor: pointer; font-family: var(--font-heading); font-weight: 600; display: flex; justify-content: space-between; color: var(--primary); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-light); }
.faq-item.active .faq-answer { padding: 20px; max-height: 500px; border-top: 1px solid #eee; }

/* Trust Layer */
.trust-layer { background: #E9ECEF; padding: 40px 5%; font-size: 0.85rem; color: var(--text-light); border-top: 1px solid #ddd; }
.trust-layer h4 { font-family: var(--font-heading); color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
.trust-layer p { margin-bottom: 5px; }

/* Footer */
footer { background: var(--primary); color: #8892B0; padding: 40px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-col h5 { color: white; font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 15px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--primary); color: white; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; transition: bottom 0.5s; z-index: 9999; flex-wrap: wrap; gap: 15px; box-shadow: 0 -5px 20px rgba(0,0,0,0.2); }
.cookie-banner.show { bottom: 0; }
.cookie-banner p { font-size: 0.9rem; flex: 1; min-width: 300px; }
.cookie-btns { display: flex; gap: 10px; }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }

/* Other Pages Formatting */
.page-header { background: var(--primary); color: white; padding: 100px 5% 50px; text-align: center; }
.page-header h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--accent); }
.content-section { max-width: 900px; margin: 0 auto; padding: 60px 5%; background: var(--bg-white); box-shadow: 0 0 20px rgba(0,0,0,0.02); border-radius: 10px; margin-top: -30px; position: relative; z-index: 10; }
.content-section h2, .content-section h3 { font-family: var(--font-heading); color: var(--primary); margin: 30px 0 15px; }
.content-section p { margin-bottom: 15px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.map-container iframe { width: 100%; height: 350px; border-radius: 10px; border: none; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger { display: block; }
    nav { position: fixed; top: 70px; left: -100%; width: 100%; background: var(--bg-white); box-shadow: 0 5px 10px rgba(0,0,0,0.1); transition: left 0.3s; }
    nav.active { left: 0; }
    nav ul { flex-direction: column; padding: 20px; text-align: center; }
    .hero, .features, .form-section, .contact-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .features-img img { border-radius: 10px; }
}