:root {
    --primary: #2c3e50;
    --secondary: #8e44ad;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #1a252f;
    --gold: #d4a574;
    --cream: #faf8f5;
    --text: #2d3436;
    --muted: #636e72;
}

* {
    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: var(--text);
    background: var(--cream);
}

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

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

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

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.brand span {
    color: var(--gold);
}

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--text);
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.nav-cta {
    background: var(--secondary);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    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="40" fill="none" stroke="%23d4a574" stroke-width="0.5" opacity="0.3"/></svg>') center/cover;
    opacity: 0.1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
    color: white;
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    cursor: pointer;
}

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

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    width: 450px;
    height: 550px;
    background: linear-gradient(45deg, var(--gold) 0%, var(--secondary) 100%);
    border-radius: 200px 200px 100px 100px;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 15px;
    background: var(--cream);
    border-radius: 185px 185px 85px 85px;
}

.hero-image-wrapper svg {
    position: absolute;
    inset: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
}

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

.story-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.story-intro h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.story-intro p {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.9;
}

.story-blocks {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.story-block-visual {
    flex: 1;
    min-width: 300px;
}

.story-block-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.story-block-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,20 L180,100 L100,180 L20,100 Z" fill="none" stroke="%23ffffff" stroke-width="2" opacity="0.2"/></svg>') center/80% no-repeat;
}

.story-block-content {
    flex: 1;
}

.story-block-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-block-content p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--dark);
    color: white;
}

.problem-header {
    text-align: center;
    margin-bottom: 70px;
}

.problem-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.problem-header p {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.problem-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--dark);
}

.problem-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.problem-card p {
    opacity: 0.75;
    line-height: 1.7;
}

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

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.services-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 370px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 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="30" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.3"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.2"/></svg>') center/cover;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-tag span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.service-btn {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background: var(--secondary);
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--cream);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* CTA Banner */
.cta-banner {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.1;
}

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

.cta-banner p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-banner .btn-primary {
    font-size: 1.15rem;
    padding: 20px 50px;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: var(--cream);
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.benefits-text > p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
}

.benefit-item h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 5px;
}

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

.benefits-visual {
    flex: 1;
}

.benefits-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.benefits-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><rect x="40" y="40" width="120" height="120" fill="none" stroke="%23ffffff" stroke-width="2" opacity="0.2" rx="20"/></svg>') center/60% no-repeat;
}

/* Form Section */
.form-section {
    padding: 120px 0;
    background: var(--dark);
}

.form-wrapper {
    display: flex;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-info {
    flex: 1;
    color: white;
}

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

.form-info > p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark);
}

.form-feature span {
    font-size: 1rem;
    opacity: 0.9;
}

.form-container {
    flex: 1;
    background: white;
    border-radius: 25px;
    padding: 50px;
}

.form-container h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--light);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

.form-submit {
    background: var(--secondary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

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

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

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.process-header p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 45px;
    right: -50px;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    opacity: 0.75;
    line-height: 1.8;
}

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

.footer-links-group h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.75;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-contact p {
    opacity: 0.75;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    background: var(--accent);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(231, 76, 60, 0.5);
}

.sticky-cta-btn svg {
    width: 20px;
    height: 20px;
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--muted);
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-accept {
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: var(--text);
    padding: 12px 30px;
    border: 2px solid var(--light);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* About Page Styles */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.about-intro {
    padding: 100px 0;
    background: white;
}

.about-intro-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-intro-text p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-intro-visual {
    flex: 1;
}

.about-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    border-radius: 30px;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="none" stroke="%23ffffff" stroke-width="2" opacity="0.2"/></svg>') center/50% no-repeat;
}

.values-section {
    padding: 100px 0;
    background: var(--cream);
}

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

.values-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 330px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--muted);
    line-height: 1.7;
}

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

.contact-info-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--secondary);
}

.contact-item-content h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item-content p {
    color: var(--muted);
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--muted);
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: var(--secondary);
    margin-bottom: 15px;
}

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

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 50px 0 20px;
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.legal-wrapper p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-wrapper ul {
    margin: 15px 0 25px 25px;
    color: var(--text);
}

.legal-wrapper li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Thanks Page Styles */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 120px 40px;
}

.thanks-content {
    text-align: center;
    color: white;
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--dark);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-content .btn-primary {
    display: inline-block;
}

/* Services Page Specific */
.services-page-grid {
    padding: 80px 0;
    background: var(--cream);
}

.services-page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-page-card {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

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

.service-page-image {
    flex: 0 0 40%;
    min-height: 350px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    position: relative;
}

.service-page-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="20" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.2"/><circle cx="70" cy="70" r="25" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.2"/></svg>') center/cover;
}

.service-page-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-page-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-page-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-page-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text);
}

.service-page-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.service-page-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid var(--light);
}

.service-page-price .price-tag {
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        width: 300px;
        height: 380px;
    }

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

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

    .story-block,
    .story-block:nth-child(even) {
        flex-direction: column;
    }

    .benefits-content {
        flex-direction: column;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .about-intro-content {
        flex-direction: column;
    }

    .service-page-card,
    .service-page-card:nth-child(even) {
        flex-direction: column;
    }

    .service-page-image {
        min-height: 250px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner {
        padding: 15px 20px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content {
        padding: 40px 20px;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-label,
    .hero-label {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .services-header h2,
    .testimonials-header h2,
    .process-header h2,
    .benefits-text h2,
    .form-info h2,
    .cta-banner h2 {
        font-size: 2rem;
    }

    .story-intro h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 35px 25px;
    }

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

    .footer-brand,
    .footer-links-group,
    .footer-contact {
        max-width: 100%;
    }

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

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

    .sticky-cta-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-icon {
        width: 100px;
        height: 100px;
    }

    .thanks-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .hero-image-wrapper {
        width: 250px;
        height: 320px;
    }

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

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

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

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

    .contact-info-wrapper {
        flex-direction: column;
    }
}
