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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

ul {
    list-style: none;
}

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

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

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

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

.header-main {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-primary a {
    color: #ffffff;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-primary a:hover {
    color: #d4a574;
}

.ad-disclosure {
    font-size: 12px;
    color: #b8b8b8;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2a2a2a;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
    font-weight: 300;
}

.intro-block {
    padding: 90px 0;
    background-color: #f9f7f4;
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.content-split-left,
.content-split-right {
    padding: 80px 0;
}

.content-split-left {
    background-color: #ffffff;
}

.content-split-right {
    background-color: #faf8f5;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-split-right .split-content {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: #e8e4df;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-preview {
    padding: 100px 0;
    background-color: #2a2a2a;
    color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    color: #2c2c2c;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8e4df;
}

.service-card h3 {
    font-size: 24px;
    padding: 25px 25px 15px;
}

.service-card p {
    padding: 0 25px;
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.price-tag {
    padding: 15px 25px 25px;
    font-size: 20px;
    font-weight: 700;
    color: #d4a574;
}

.cta-centered {
    text-align: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #d4a574;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c49463;
}

.btn-secondary {
    background-color: #ffffff;
    color: #2a2a2a;
    border: 2px solid #d4a574;
}

.btn-secondary:hover {
    background-color: #d4a574;
    color: #ffffff;
}

.cta-block-dark {
    padding: 90px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-block-dark h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-block-dark p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #d4d4d4;
}

.cta-block-light {
    padding: 90px 0;
    background-color: #f9f7f4;
    text-align: center;
}

.cta-block-light h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-block-light p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-section p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #5a5a5a;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.contact-form button[type="submit"] {
    width: 100%;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fef9f2;
}

.disclaimer-text {
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.8;
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
}

.footer-main {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: #d4d4d4;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.page-header {
    padding: 80px 0 60px;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #d4d4d4;
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-intro img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
    background-color: #e8e4df;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.philosophy-section {
    padding: 80px 0;
    background-color: #f9f7f4;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.values-grid {
    padding: 90px 0;
    background-color: #ffffff;
}

.values-grid h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 240px;
    padding: 35px;
    background-color: #faf8f5;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.expertise-section {
    padding: 90px 0;
    background-color: #f9f7f4;
}

.expertise-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.expertise-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.services-detailed {
    padding: 70px 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e8e4df;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.service-detail-text ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 25px;
}

.service-detail-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #5a5a5a;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 10px;
}

.price-note {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
}

.cta-form-section {
    padding: 90px 0;
    background-color: #f9f7f4;
}

.cta-form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.cta-form-section p {
    font-size: 17px;
    margin-bottom: 40px;
    text-align: center;
    color: #5a5a5a;
}

.contact-info-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-image {
    flex: 1;
    background-color: #e8e4df;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2a2a2a;
}

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

.service-area-section {
    padding: 80px 0;
    background-color: #faf8f5;
}

.service-area-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-area-section p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.approach-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    padding: 30px;
    background-color: #faf8f5;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-card p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background-color: #f9f7f4;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f9f7f4;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-details {
    margin: 40px 0;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.thanks-details p {
    font-size: 16px;
    text-align: left;
}

.thanks-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.next-steps {
    list-style: disc;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #5a5a5a;
    margin-left: 25px;
}

.cta-thanks {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 70px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-page em {
    color: #7a7a7a;
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #faf8f5;
    font-weight: 600;
    color: #2a2a2a;
}

.cookie-table td {
    font-size: 15px;
    color: #5a5a5a;
}

@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-primary {
        gap: 20px;
    }

    .hero-overlay h1 {
        font-size: 38px;
    }

    .hero-overlay p {
        font-size: 17px;
    }

    .service-cards {
        flex-direction: column;
    }

    .split-content,
    .service-detail-content,
    .contact-layout {
        flex-direction: column;
    }

    .content-split-right .split-content,
    .service-detail-card.reverse .service-detail-content {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

@media (max-width: 600px) {
    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-overlay p {
        font-size: 15px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .intro-block h2,
    .services-preview h2 {
        font-size: 28px;
    }
}