/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: #c9a227;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: #444;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #c9a227;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.hero-badge {
    background: rgba(201, 162, 39, 0.2);
    color: #c9a227;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    color: #fff;
    font-size: 3.5rem;
    max-width: 700px;
    line-height: 1.15;
}

.hero h1 span {
    color: #c9a227;
}

.hero-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #c9a227;
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #ddb52f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background: #1a1a2e;
    color: #fff;
}

.btn-dark:hover {
    background: #2a2a3e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}

.btn-outline:hover {
    background: #1a1a2e;
    color: #fff;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: #fff;
}

.story-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.story-intro h2 {
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.story-intro p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.story-text p {
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.story-image-wrapper::before {
    content: '';
    display: block;
    padding-top: 75%;
    background: linear-gradient(45deg, #c9a227, #e8d48b);
}

.story-image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 150"><rect fill="%23f5f5f5" width="200" height="150"/><rect fill="%23e0e0e0" x="20" y="20" width="70" height="90" rx="5"/><rect fill="%23d0d0d0" x="110" y="20" width="70" height="40" rx="5"/><rect fill="%23d0d0d0" x="110" y="70" width="70" height="40" rx="5"/></svg>') center/cover;
    border-radius: 12px;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #c9a227;
}

.problem-card h4 {
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.problem-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Insight Section */
.insight-section {
    padding: 6rem 0;
    background: #1a1a2e;
    position: relative;
}

.insight-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, #1a1a2e);
}

.insight-content {
    text-align: center;
    color: #fff;
}

.insight-content h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.insight-content h2 span {
    color: #c9a227;
}

.insight-content p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.15rem;
}

.insight-cta {
    margin-top: 2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: #fff;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.benefits-header p {
    color: #666;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c9a227, #e8d48b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    fill: #1a1a2e;
}

.benefit-content h4 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #fff 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    color: #1a1a2e;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 4rem;
    color: #c9a227;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    color: #444;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9a227, #e8d48b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1a2e;
}

.testimonial-info h5 {
    color: #1a1a2e;
    font-size: 1rem;
}

.testimonial-info span {
    color: #888;
    font-size: 0.85rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #fff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.services-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fafafa;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: #c9a227;
    opacity: 0.8;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
}

.service-price .unit {
    color: #888;
    font-size: 0.9rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features li::before {
    content: '✓';
    color: #c9a227;
    font-weight: 700;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: #f5f5f5;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    color: #1a1a2e;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    height: 300px;
    background: linear-gradient(135deg, #ddd, #bbb);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 46, 0.8));
}

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    color: #fff;
}

.gallery-item-content h4 {
    margin-bottom: 0.3rem;
}

.gallery-item-content span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #c9a227 0%, #e8d48b 100%);
}

.urgency-content {
    text-align: center;
}

.urgency-content h2 {
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.urgency-content p {
    color: #333;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.urgency-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.urgency-badge {
    background: rgba(26, 26, 46, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #1a1a2e;
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background: #1a1a2e;
}

.form-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
    color: #fff;
}

.form-info h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.form-info h2 span {
    color: #c9a227;
}

.form-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.form-benefits {
    margin-top: 2rem;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.form-benefits li::before {
    content: '→';
    color: #c9a227;
    font-weight: 700;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.form-container h3 {
    color: #1a1a2e;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a227;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: #c9a227;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #ddb52f;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c9a227;
}

.trust-label {
    color: #666;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    text-align: center;
    color: #fff;
}

.about-hero h1 {
    margin-bottom: 1rem;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 5rem 0;
    background: #fff;
}

.about-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
}

.about-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #c9a227, #e8d48b);
    border-radius: 20px;
}

.values-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #1a1a2e;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: #c9a227;
}

.value-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Page */
.contact-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    text-align: center;
    color: #fff;
}

.contact-content {
    padding: 5rem 0;
    background: #fff;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #c9a227;
}

.contact-details h4 {
    color: #1a1a2e;
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-form-wrapper {
    flex: 1;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #c9a227;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: #1a1a2e;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.thanks-service {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-service h3 {
    color: #c9a227;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #0d0d1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #c9a227;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c9a227;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
}

.cookie-text a {
    color: #c9a227;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.cookie-accept {
    background: #c9a227;
    color: #1a1a1a;
}

.cookie-accept:hover {
    background: #ddb52f;
}

.cookie-reject {
    background: #eee;
    color: #333;
}

.cookie-reject:hover {
    background: #ddd;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #c9a227;
    color: #1a1a1a;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.5);
}

/* Legal Pages */
.legal-hero {
    padding: 10rem 0 4rem;
    background: #1a1a2e;
    text-align: center;
    color: #fff;
}

.legal-content {
    padding: 4rem 0;
    background: #fff;
}

.legal-content h2 {
    color: #1a1a2e;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #1a1a2e;
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
}

.legal-content p {
    color: #555;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content ul li {
    color: #555;
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .story-content,
    .about-grid,
    .contact-grid,
    .form-wrapper {
        flex-direction: column;
    }

    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .form-container {
        padding: 2rem;
    }

    .footer-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        left: 20px;
        right: 20px;
        bottom: 10px;
    }

    .sticky-cta a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .problem-card,
    .benefit-item,
    .value-card {
        min-width: 100%;
    }

    .urgency-badges {
        flex-direction: column;
        align-items: center;
    }
}
