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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f4f4f4;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2c2c2c;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 70px;
    background-color: #2a2a2a;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 38px;
    color: #d8d8d8;
    max-width: 480px;
}

.hero-image {
    flex: 1;
    background-color: #e5e5e5;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #ffffff;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    display: flex;
    min-height: 70vh;
}

.intro-left {
    flex: 1;
    background-color: #d4c5b0;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 80px;
    background-color: #ffffff;
}

.intro-right h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #2c2c2c;
    letter-spacing: -0.8px;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #5a5a5a;
}

.services-preview {
    padding: 100px 60px;
    background-color: #f9f9f9;
}

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

.section-header-centered h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #2c2c2c;
    letter-spacing: -0.8px;
}

.section-header-centered p {
    font-size: 18px;
    color: #6a6a6a;
}

.service-grid-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 18px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 25px 0;
}

.service-select {
    padding: 14px 32px;
    background-color: #2a2a2a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s, transform 0.2s;
}

.service-select:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
}

.process-section {
    display: flex;
    min-height: 75vh;
}

.process-content {
    flex: 1.2;
    padding: 80px 70px;
    background-color: #f4f1ed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #2c2c2c;
}

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

.step {
    display: flex;
    gap: 25px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #b8a68d;
    min-width: 60px;
}

.step h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.process-image {
    flex: 1;
    background-color: #d0d0d0;
    overflow: hidden;
}

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

.cta-form-section {
    padding: 90px 60px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 650px;
    width: 100%;
}

.form-container h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #2c2c2c;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 45px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    color: #2c2c2c;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a2a2a;
    background-color: #ffffff;
}

.contact-form button[type="submit"] {
    margin-top: 15px;
    align-self: center;
}

.main-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 60px 30px;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #909090;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #d8d8d8;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #2a2a2a;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero-split {
    display: flex;
    min-height: 50vh;
    background-color: #fafafa;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    background-color: #3a3a3a;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-hero-content p {
    font-size: 18px;
    color: #d8d8d8;
}

.page-hero-image {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.about-story {
    display: flex;
    min-height: 70vh;
}

.story-content {
    flex: 1;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.story-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.story-image {
    flex: 1;
    background-color: #d4c5b0;
    overflow: hidden;
}

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

.philosophy-section {
    display: flex;
    min-height: 65vh;
}

.philosophy-image {
    flex: 1;
    background-color: #c5b8a0;
    overflow: hidden;
}

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

.philosophy-content {
    flex: 1;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f6f3;
}

.philosophy-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.team-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.team-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    padding: 40px;
    background-color: #f9f9f9;
}

.member-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.member-role {
    font-size: 15px;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.values-section {
    padding: 90px 60px;
    background-color: #f4f1ed;
}

.values-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: #ffffff;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.cta-secondary {
    padding: 80px 60px;
    background-color: #2a2a2a;
    text-align: center;
    color: #ffffff;
}

.cta-secondary h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 18px;
}

.cta-secondary p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #d8d8d8;
}

.cta-secondary-link {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: background-color 0.3s;
    margin-left: 15px;
}

.cta-secondary-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.services-detailed {
    padding: 80px 60px;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    margin-bottom: 70px;
    gap: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #5a5a5a;
}

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

.feature {
    font-size: 15px;
    color: #2c2c2c;
    padding-left: 25px;
    position: relative;
}

.feature::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #b8a68d;
    font-weight: 600;
}

.service-pricing {
    margin: 25px 0;
    padding: 20px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #5a5a5a;
    font-weight: 600;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: #2a2a2a;
}

.materials-section {
    padding: 70px 60px;
    background-color: #f8f6f3;
    text-align: center;
}

.materials-section h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2c2c2c;
}

.materials-content {
    max-width: 900px;
    margin: 0 auto;
}

.materials-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a5a5a;
}

.contact-hero {
    padding: 80px 60px;
    background-color: #2a2a2a;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.contact-split {
    display: flex;
    min-height: 60vh;
}

.contact-info-block {
    flex: 1;
    padding: 70px 80px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.info-group {
    margin-bottom: 32px;
}

.info-group h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.info-group p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.info-group .note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e8e4dc;
    padding: 70px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-box {
    max-width: 500px;
}

.map-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.map-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 15px;
}

.legal-info {
    padding: 70px 80px;
    background-color: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #5a5a5a;
}

.thanks-section {
    padding: 100px 60px;
    text-align: center;
    background-color: #f9f9f9;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #5a5a5a;
}

.service-confirmation {
    margin: 25px 0;
}

.service-selected {
    font-size: 17px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #4caf50;
    color: #2c2c2c;
}

.thanks-info {
    font-size: 16px;
    margin-bottom: 40px;
    color: #6a6a6a;
}

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

.next-steps {
    padding: 80px 60px;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #2c2c2c;
}

.steps-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 30px;
    background-color: #f9f9f9;
}

.step-item .step-number {
    font-size: 48px;
    font-weight: 700;
    color: #b8a68d;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.legal-page {
    padding: 60px;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #5a5a5a;
}

.legal-content ul {
    margin: 15px 0 20px 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #5a5a5a;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #888;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 15px 25px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-split,
    .intro-section,
    .process-section,
    .about-story,
    .philosophy-section,
    .page-hero-split,
    .contact-split,
    .service-card,
    .service-detail-card {
        flex-direction: column;
    }

    .hero-content,
    .intro-right,
    .process-content,
    .story-content,
    .philosophy-content,
    .page-hero-content,
    .contact-info-block,
    .service-info,
    .service-detail-content {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-header-centered h2 {
        font-size: 32px;
    }

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

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