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

:root {
    --primary: #2d5a4a;
    --primary-light: #4a8b76;
    --secondary: #c9a86c;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --gray: #6b6b6b;
    --white: #ffffff;
    --accent: #e8ddd0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background: #d4b87a;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 30px;
}

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

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

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d5a4a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    transform: rotate(15deg);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 25px;
}

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

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 520px;
}

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

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

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

.hero-img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: flex;
    gap: 40px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

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

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
}

/* About Preview */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--dark);
    box-shadow: 0 15px 40px rgba(201,168,108,0.3);
}

.about-img-accent span {
    font-size: 3rem;
    font-weight: 700;
}

.about-img-accent p {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 20px;
}

.about-content {
    flex: 1;
}

.about-content .section-desc {
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.about-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

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

/* Services Section */
.services {
    background: var(--light);
}

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

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

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

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Process Section */
.process {
    background: var(--white);
    position: relative;
}

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

.process-header .section-desc {
    margin: 0 auto;
}

.process-steps {
    display: flex;
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--accent);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(45,90,74,0.3);
}

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

.process-step p {
    color: var(--gray);
    font-size: 0.95rem;
    padding: 0 15px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.testimonials .section-tag {
    color: var(--secondary);
}

.testimonials .section-title {
    color: var(--white);
}

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

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

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

.testimonial-info h5 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d5a4a' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

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

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Benefits Section */
.benefits {
    background: var(--white);
}

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

.benefits-content {
    flex: 1;
}

.benefits-list {
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--accent);
}

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

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

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

.benefit-text h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark);
}

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

.benefits-image {
    flex: 1;
}

.benefits-img-wrapper {
    position: relative;
}

.benefits-img-wrapper img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    height: 550px;
    object-fit: cover;
    width: 100%;
}

.benefits-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--secondary);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(201,168,108,0.3);
}

.benefits-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.benefits-badge p {
    font-size: 0.85rem;
    color: var(--dark);
}

/* Contact Preview */
.contact-preview {
    background: var(--light);
}

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

.contact-info {
    flex: 1;
}

.contact-info .section-desc {
    margin-bottom: 40px;
}

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

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

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

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

.contact-item h4 {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--accent);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

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

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

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

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

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

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

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

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

.cookie-reject {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
}

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

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

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

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(45,90,74,0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45,90,74,0.5);
}

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

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--gray);
}

/* About Page */
.about-full {
    padding: 100px 0;
}

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

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

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

.about-intro-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.about-intro-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    height: 450px;
    object-fit: cover;
    width: 100%;
}

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

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

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

.value-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

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

.value-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
}

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

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

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

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.services-intro p {
    color: var(--gray);
    font-size: 1.1rem;
}

.service-detailed {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--accent);
    align-items: center;
}

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

.service-detailed:last-child {
    border-bottom: none;
}

.service-detailed-image {
    flex: 1;
}

.service-detailed-image img {
    border-radius: 20px;
    height: 350px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.service-detailed-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-detailed-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

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

.service-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.service-detailed-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.service-detailed-price .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-detailed-price .unit {
    color: var(--gray);
}

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

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

.contact-main {
    flex: 1.5;
}

.contact-main h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-main > p {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-sidebar {
    flex: 1;
}

.contact-card {
    background: var(--light);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-card-item:last-child {
    margin-bottom: 0;
}

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

.contact-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.contact-card-item h4 {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-card-item p {
    color: var(--dark);
    font-weight: 600;
}

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

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

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 20px 50px rgba(45,90,74,0.3);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.thanks-service {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    margin: 30px 0;
    display: inline-block;
}

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

.thanks-service strong {
    display: block;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.thanks-content .btn {
    margin-top: 20px;
}

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

.legal-content .container {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin: 40px 0 20px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

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

.legal-content a {
    color: var(--primary);
}

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

    .hero-image {
        width: 100%;
    }

    .hero-stats {
        position: static;
        margin-top: 30px;
        justify-content: center;
    }

    .about-grid,
    .about-intro {
        flex-direction: column;
    }

    .about-img-accent {
        right: 20px;
    }

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

    .contact-wrapper,
    .contact-grid {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 130px 0 70px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-steps::before {
        display: none;
    }

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

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

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

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

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

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

    .sticky-cta-btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }
}

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

    section {
        padding: 60px 0;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .btn {
        padding: 12px 24px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
