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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c19a6b;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

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

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

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.875rem;
    border-bottom: 1px solid #ffeaa7;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-primary {
    display: flex;
    gap: 32px;
}

.nav-primary a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6%;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.intro-alternate {
    display: flex;
    align-items: center;
    padding: 80px 6%;
}

.intro-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text {
    flex: 1;
    padding-left: 60px;
}

.intro-text h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.services-overview {
    padding: 100px 6%;
    background-color: var(--bg-light);
}

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

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

.services-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(50% - 16px);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.btn-service {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 6%;
    background-color: var(--bg-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.project-form {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.selected-service-display {
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-split {
    display: flex;
    align-items: center;
    padding: 100px 6%;
    background-color: var(--bg-white);
}

.trust-text {
    flex: 1;
    padding-right: 60px;
}

.trust-text h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.trust-text p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.trust-visual {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-section {
    padding: 100px 6%;
    background-color: var(--bg-light);
    text-align: center;
}

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

.process-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.step {
    flex: 0 0 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

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

.step p {
    font-size: 1rem;
    color: var(--text-light);
}

.footer-main {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 6% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--bg-white);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.disclaimer {
    margin-top: 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 24px 6%;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

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

.btn-cookie:hover {
    opacity: 0.85;
}

.page-hero {
    text-align: center;
    padding: 80px 6%;
    background-color: var(--bg-light);
}

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

.page-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-detail {
    padding: 60px 6%;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

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

.service-detail-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-pricing {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.service-pricing strong {
    color: var(--primary-color);
}

.service-detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 100px 6%;
    background-color: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--bg-white);
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
}

.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 6%;
}

.about-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

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

.about-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.values-section {
    padding: 100px 6%;
    background-color: var(--bg-light);
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-item {
    flex: 0 0 calc(50% - 16px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    text-align: left;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.story-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 6%;
}

.story-content {
    flex: 1;
}

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

.story-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.story-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-approach {
    padding: 100px 6%;
    background-color: var(--bg-light);
    text-align: center;
}

.team-approach h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.team-approach > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 0 0 300px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

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

.approach-step p {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-layout {
    display: flex;
    align-items: stretch;
    padding: 80px 6%;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

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

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

.contact-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    padding: 100px 6%;
    background-color: var(--bg-light);
    text-align: center;
}

.location-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.location-section p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.map-placeholder {
    max-width: 800px;
    height: 400px;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.thanks-section {
    padding: 100px 6%;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #28a745;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 32px;
}

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

.thanks-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 1.0625rem;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.next-steps {
    padding: 80px 6%;
    background-color: var(--bg-light);
    text-align: center;
}

.next-steps h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.step-item {
    flex: 0 0 300px;
    text-align: center;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

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

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

.legal-page {
    padding: 60px 6%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 8px;
}

.legal-page p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-alternate,
    .trust-split,
    .about-split,
    .story-section,
    .contact-layout,
    .service-detail-item {
        flex-direction: column;
    }

    .intro-text,
    .trust-text {
        padding-left: 0;
        padding-right: 0;
        padding-top: 40px;
    }

    .service-card,
    .value-item {
        flex: 0 0 100%;
    }

    .nav-primary {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content h1,
    .page-hero h1 {
        font-size: 2rem;
    }

    .services-header h2,
    .form-intro h2,
    .process-section h2,
    .values-section h2,
    .team-approach h2,
    .location-section h2,
    .thanks-content h1,
    .next-steps h2,
    .legal-page h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}