:root {
    --primary: #2d3a4a;
    --secondary: #c49a6c;
    --accent: #1a2530;
    --light: #f5f3f0;
    --dark: #1e2832;
    --text: #3a3a3a;
    --text-light: #6b7280;
    --white: #ffffff;
    --border: #e0dcd7;
}

* {
    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-color: var(--white);
}

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

ul {
    list-style: none;
}

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

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

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

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

.btn-primary:hover {
    background-color: #b08a5c;
    transform: translateY(-2px);
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: 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-main {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-main a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--light);
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 20px;
}

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

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

.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 480px;
}

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

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

.hero-image-main {
    width: 100%;
    height: 500px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
}

.hero-image-offset {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 250px;
    height: 180px;
    background-color: var(--border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
}

.hero-accent {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--secondary);
    opacity: 0.3;
}

.section {
    padding: 100px 0;
}

.section-alt {
    background-color: var(--light);
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 700;
}

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

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

.asymmetric-intro {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.asymmetric-intro-content {
    flex: 1;
    padding-top: 40px;
}

.asymmetric-intro-visual {
    flex: 0 0 45%;
    position: relative;
}

.asymmetric-intro-visual .image-block {
    height: 450px;
    background-color: var(--border);
    overflow: hidden;
}

.asymmetric-intro-visual .image-block img {
    width: 100%;
    height: 100%;
}

.asymmetric-intro-visual .floating-stat {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 25px 35px;
    text-align: center;
}

.floating-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.floating-stat span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    flex: 1 1 calc(50% - 15px);
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-item h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: stretch;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
}

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

.service-card-image {
    flex: 0 0 40%;
    min-height: 350px;
    background-color: var(--border);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.process-section {
    position: relative;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border);
}

.process-step {
    position: relative;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.process-step:last-child {
    border-bottom: none;
}

.process-number {
    position: absolute;
    left: -80px;
    top: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.process-step p {
    color: var(--text-light);
    max-width: 600px;
}

.testimonial-section {
    position: relative;
}

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

.testimonial-card {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    position: relative;
}

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

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

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

.testimonial-author-image {
    width: 55px;
    height: 55px;
    background-color: var(--light);
    overflow: hidden;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
}

.testimonial-author-info strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
}

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

.cta-section {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.cta-section .btn-primary:hover {
    background-color: #d4aa7c;
}

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

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

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    flex: 1.5;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-col 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);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

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

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

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

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

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

.page-hero {
    padding: 160px 0 80px;
    background-color: var(--light);
    position: relative;
}

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

.page-hero p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

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

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

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

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

.about-story-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-story-image {
    flex: 0 0 45%;
    height: 500px;
    background-color: var(--border);
    position: relative;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
}

.about-story-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--secondary);
    opacity: 0.3;
    z-index: -1;
}

.team-section {
    background-color: var(--light);
}

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

.team-member {
    flex: 1;
    background-color: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member-image {
    height: 300px;
    background-color: var(--border);
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
}

.team-member-info {
    padding: 25px;
    text-align: center;
}

.team-member-info h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.value-card {
    flex: 1;
    padding: 40px;
    background-color: var(--white);
    border-left: 4px solid var(--secondary);
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

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

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.service-card-grid {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card-grid:hover {
    transform: translateY(-8px);
}

.service-card-grid-image {
    height: 220px;
    background-color: var(--border);
    overflow: hidden;
}

.service-card-grid-image img {
    width: 100%;
    height: 100%;
}

.service-card-grid-content {
    padding: 35px;
}

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

.service-card-grid p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-card-grid .service-price {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-layout {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 0 0 40%;
}

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

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.contact-detail-item {
    display: flex;
    gap: 20px;
}

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

.contact-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
}

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

.contact-detail-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--light);
    padding: 50px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

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

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

.form-submit {
    width: 100%;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
}

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

.legal-content li {
    color: var(--text-light);
    margin-bottom: 10px;
    list-style: disc;
    line-height: 1.8;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content p {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

.thanks-content .selected-service {
    background-color: var(--light);
    padding: 20px 30px;
    margin: 30px 0;
    display: inline-block;
}

.thanks-content .selected-service strong {
    color: var(--primary);
    font-size: 1.1rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

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

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

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

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

.cookie-accept:hover {
    background-color: #d4aa7c;
}

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

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

.disclaimer {
    background-color: var(--accent);
    padding: 25px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-visual {
        width: 100%;
    }

    .hero-image-offset {
        left: 20px;
        bottom: -20px;
    }

    .asymmetric-intro {
        flex-direction: column;
    }

    .asymmetric-intro-visual {
        width: 100%;
    }

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

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

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

    .about-story {
        flex-direction: column;
    }

    .about-story-image {
        width: 100%;
        height: 350px;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 0;
    }

    .nav-main {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .ad-disclosure {
        margin-left: 0;
        order: -1;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 140px 0 60px;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .feature-item {
        flex: 1 1 100%;
    }

    .services-grid-page {
        flex-direction: column;
    }

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

    .process-timeline {
        padding-left: 60px;
    }

    .process-number {
        left: -60px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
