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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.hero-minimal {
    padding: 100px 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-wide {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.hero-content-wide h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 400;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.intro-offset {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.offset-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.offset-text {
    flex: 1.2;
}

.offset-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

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

.offset-visual {
    flex: 1;
    background-color: #f5f5f5;
}

.offset-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-stacked {
    background-color: #fafafa;
    padding: 100px 40px;
}

.values-stacked h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 70px;
}

.value-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-block {
    padding: 50px 60px;
    border-bottom: 1px solid #e0e0e0;
}

.value-block:last-child {
    border-bottom: none;
}

.value-block-highlight {
    background-color: #ffffff;
    margin: 0 -40px;
    padding: 50px 100px;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
}

.value-block p {
    font-size: 17px;
    color: #5a5a5a;
    max-width: 700px;
}

.services-preview {
    padding: 120px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.services-intro-text {
    max-width: 650px;
    margin-bottom: 60px;
}

.services-intro-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 400;
}

.services-intro-text p {
    font-size: 17px;
    color: #5a5a5a;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.service-card-large .service-card-image {
    height: 400px;
}

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

.service-card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card-content p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.service-btn {
    padding: 14px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.service-btn:hover {
    background-color: #333333;
}

.services-link-container {
    text-align: center;
    margin-top: 50px;
}

.text-link-arrow {
    font-size: 17px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
    display: inline-block;
}

.text-link-arrow:hover {
    transform: translateX(5px);
}

.testimonial-inline {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 26px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    color: #c0c0c0;
}

.form-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-wrapper > p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 45px;
    border: 1px solid #e8e8e8;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #3a3a3a;
    font-weight: 500;
}

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

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

.submit-btn {
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #333333;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.site-footer {
    background-color: #1a1a1a;
    color: #c0c0c0;
    padding: 70px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 40px;
    display: none;
    z-index: 1000;
    border-top: 1px solid #444444;
}

.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: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

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

.cookie-reject:hover {
    background-color: #3a3a3a;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 400;
}

.thanks-content p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-highlight {
    background-color: #f9f9f9;
    padding: 25px;
    margin: 30px 0;
    border-left: 3px solid #1a1a1a;
}

.thanks-highlight p {
    margin: 0;
    font-weight: 500;
    color: #1a1a1a;
}

.back-home-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.back-home-btn:hover {
    background-color: #333333;
}

.about-hero {
    padding: 80px 40px;
    background-color: #fafafa;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 50px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.about-hero p {
    font-size: 19px;
    color: #5a5a5a;
    line-height: 1.7;
}

.about-story {
    padding: 100px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 80px;
}

.story-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: 400;
}

.story-section p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 18px;
}

.services-page-header {
    padding: 80px 40px 60px;
    background-color: #fafafa;
    text-align: center;
}

.services-page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.services-page-header p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.services-full-list {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item-full {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
    padding-bottom: 70px;
    border-bottom: 1px solid #e8e8e8;
}

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

.service-item-image {
    flex: 0 0 400px;
    height: 300px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

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

.service-item-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-item-text p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-item-price {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: block;
}

.contact-page {
    padding: 80px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 46px;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-info-section {
    background-color: #fafafa;
    padding: 45px;
    margin-bottom: 40px;
}

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

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

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #1a1a1a;
}

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

.legal-page {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 500;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

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

.legal-page ul li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .hero-subtitle {
        font-size: 17px;
    }

    .offset-content {
        flex-direction: column;
        gap: 40px;
    }

    .value-block-highlight {
        margin: 0;
        padding: 50px 60px;
    }

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

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

    .form-row {
        flex-direction: column;
    }

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

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

    .service-item-full {
        flex-direction: column;
    }

    .service-item-image {
        flex: 1 1 100%;
        width: 100%;
    }
}