:root {
    --color-primary: #2d4a3e;
    --color-secondary: #c4a962;
    --color-accent: #8b6914;
    --color-dark: #1a1a1a;
    --color-light: #f8f6f1;
    --color-gray: #6b6b6b;
    --color-border: #e0dcd3;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

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

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

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.95rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d5a4e 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-content {
    flex: 1;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 8px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 500"><rect fill="%23e8e4dc" width="600" height="500"/><rect x="50" y="280" width="200" height="150" fill="%23c4a962" rx="5"/><rect x="60" y="290" width="180" height="80" fill="%23b8995a"/><rect x="350" y="200" width="180" height="250" fill="%232d4a3e"/><rect x="360" y="210" width="160" height="180" fill="%23f5f5f5"/><circle cx="440" cy="300" r="40" fill="%23c4a962"/><rect x="150" y="150" width="120" height="180" fill="%23d4cfc5" rx="60"/><rect x="100" y="350" width="80" height="100" fill="%236b6b6b"/><rect x="420" y="350" width="80" height="100" fill="%236b6b6b"/></svg>') center/cover no-repeat;
    border-radius: 10px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--color-secondary);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-accent);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--color-primary);
}

.btn-dark {
    background: var(--color-dark);
    color: white;
}

.btn-dark:hover {
    background: var(--color-primary);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--color-dark);
    color: white;
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-alt {
    background: white;
}

.section-accent {
    background: var(--color-primary);
    color: white;
}

.section-accent h2 {
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-gray);
}

/* Problem Section */
.problem-section {
    background: #f0ebe3;
    padding: 120px 0;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-left: 4px solid var(--color-secondary);
}

.problem-card h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Story Section */
.story-section {
    background: white;
    padding: 100px 0;
}

.story-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
    height: 330px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 450"><rect fill="%23f5f2eb" width="500" height="450"/><rect x="30" y="50" width="440" height="350" fill="%232d4a3e" rx="5"/><rect x="50" y="70" width="200" height="150" fill="%23e8e4dc"/><rect x="270" y="70" width="180" height="150" fill="%23c4a962"/><rect x="50" y="240" width="400" height="140" fill="%23d4cfc5"/><circle cx="250" cy="310" r="50" fill="%23b8995a"/></svg>') center/cover no-repeat;
    border-radius: 10px;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    margin-bottom: 25px;
}

.story-content p {
    margin-bottom: 20px;
    color: var(--color-gray);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: var(--color-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-image {
    height: 220px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a6b5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Testimonials */
.testimonials-section {
    background: var(--color-dark);
    padding: 100px 0;
}

.testimonials-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-dark);
}

.testimonial-name {
    color: white;
    font-weight: 500;
}

.testimonial-role {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.benefits-content {
    flex: 1;
    min-width: 300px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.benefit-text h4 {
    margin-bottom: 8px;
}

.benefit-text p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23f8f6f1" width="400" height="400"/><rect x="20" y="20" width="360" height="360" fill="%232d4a3e" rx="10"/><rect x="40" y="40" width="150" height="200" fill="%23c4a962"/><rect x="210" y="40" width="150" height="100" fill="%23e8e4dc"/><rect x="210" y="160" width="150" height="80" fill="%23b8995a"/><rect x="40" y="260" width="320" height="100" fill="%23d4cfc5"/></svg>') center/cover no-repeat;
    border-radius: 10px;
}

/* Process Section */
.process-section {
    background: #f0ebe3;
    padding: 120px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: white;
    font-size: 2rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: var(--color-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d5a4e 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Section */
.form-section {
    padding: 120px 0;
    background: white;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-content {
    flex: 1;
}

.form-content h2 {
    margin-bottom: 20px;
}

.form-content p {
    color: var(--color-gray);
    margin-bottom: 30px;
}

.form-box {
    flex: 1;
    background: var(--color-light);
    padding: 50px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    background: white;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--color-primary);
    color: white;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--color-accent);
}

/* Urgency Banner */
.urgency-banner {
    background: var(--color-secondary);
    padding: 20px;
    text-align: center;
}

.urgency-text {
    color: var(--color-dark);
    font-weight: 500;
}

.urgency-countdown {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-left: 10px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 15px 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    color: white;
    font-weight: 500;
}

.sticky-cta .btn {
    padding: 12px 30px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--color-light);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
    height: 300px;
    background: linear-gradient(45deg, var(--color-primary), #4a6b5c);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.gallery-item:nth-child(2) {
    background: linear-gradient(45deg, var(--color-secondary), #d4b872);
}

.gallery-item:nth-child(3) {
    background: linear-gradient(45deg, #6b6b6b, #8a8a8a);
}

.gallery-item:nth-child(4) {
    background: linear-gradient(45deg, #2d4a3e, var(--color-primary));
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-primary);
}

.trust-text {
    font-size: 0.95rem;
    color: var(--color-gray);
}

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    padding: 25px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--color-primary);
    color: white;
}

.cookie-accept:hover {
    background: var(--color-accent);
}

.cookie-reject {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-gray);
}

.cookie-reject:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

/* About Page */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d5a4e 100%);
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.about-content {
    padding: 100px 0;
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-story:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-gray);
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    height: 350px;
    background: linear-gradient(135deg, var(--color-primary), #4a6b5c);
    border-radius: 10px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--color-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    background: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-family: var(--font-heading);
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-card p {
    color: var(--color-gray);
}

/* Services Page */
.services-list {
    padding: 100px 0;
}

.service-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--color-border);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item-image {
    flex: 1;
    height: 350px;
    background: linear-gradient(135deg, var(--color-primary), #4a6b5c);
    border-radius: 10px;
}

.service-item-content {
    flex: 1;
}

.service-item-content h2 {
    margin-bottom: 20px;
}

.service-item-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
}

.service-item-price {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 25px;
}

.service-item-price span {
    font-size: 1rem;
    color: var(--color-gray);
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--color-gray);
}

.contact-map {
    flex: 1;
    height: 400px;
    background: var(--color-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3d5a4e 100%);
}

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-primary);
}

.thanks-content h1 {
    color: white;
    margin-bottom: 20px;
}

.thanks-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.thanks-service {
    background: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.thanks-service span {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 5px;
}

.thanks-service strong {
    color: white;
    font-size: 1.3rem;
}

/* Legal Pages */
.legal-content {
    padding: 100px 0;
}

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--color-gray);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--color-gray);
}

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

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .story-wrapper,
    .form-wrapper,
    .benefits-wrapper,
    .about-story,
    .service-item,
    .contact-wrapper {
        flex-direction: column;
    }

    .about-story:nth-child(even),
    .service-item:nth-child(even),
    .process-step:nth-child(even) {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--color-border);
    }

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

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-visual {
        display: none;
    }

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

    .sticky-cta-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .form-box {
        padding: 30px 20px;
    }
}
