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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

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

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

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

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

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

.brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #888;
    font-style: italic;
    max-width: 200px;
    text-align: right;
}

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

.hero-content {
    max-width: 900px;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a5a5a;
    line-height: 1.6;
    max-width: 700px;
}

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

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

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

.intro-narrow {
    max-width: 650px;
    margin-left: auto;
}

.intro-narrow h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

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

.services-header {
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 400;
}

.services-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card-large {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card-large:hover {
    transform: translateX(10px);
}

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

.service-image-wrapper {
    flex: 1;
    min-width: 400px;
    height: 350px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.service-details {
    flex: 1;
    padding-top: 20px;
}

.service-details h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
}

.philosophy-section {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 100px 40px;
}

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

.philosophy-text h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
}

.philosophy-text p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #d8d8d8;
}

.form-section-centered {
    max-width: 700px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container-minimal h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
}

.form-intro {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 50px;
}

.form-field {
    margin-bottom: 30px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4a4a4a;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #d8d8d8;
    padding: 80px 40px 30px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: #d8d8d8;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #252525;
    border-left: 3px solid #555;
}

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

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

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

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
}

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

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

.thanks-page .selected-service {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0;
}

.thanks-page a {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-page a:hover {
    background-color: #333333;
}

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

.about-hero h1 {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 800px;
}

.about-content-split {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.about-text-column {
    flex: 1.2;
}

.about-text-column h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 50px;
}

.about-text-column h2:first-child {
    margin-top: 0;
}

.about-text-column p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #3a3a3a;
    line-height: 1.8;
}

.about-image-column {
    flex: 1;
}

.about-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.contact-header h1 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 50px;
}

.contact-grid {
    display: flex;
    gap: 100px;
}

.contact-info {
    flex: 1;
}

.contact-info-block {
    margin-bottom: 50px;
}

.contact-info-block h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #666;
}

.contact-info-block p {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    height: 600px;
    background-color: #e8e8e8;
}

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

.services-page-header {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

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

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

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

.service-item-detailed {
    margin-bottom: 100px;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.service-item-detailed:nth-child(odd) {
    flex-direction: row-reverse;
}

.service-item-image {
    flex: 1;
    height: 400px;
    background-color: #e8e8e8;
}

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

.service-item-content {
    flex: 1;
    padding-top: 30px;
}

.service-item-content h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 25px;
}

.service-item-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-item-price {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
}

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

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

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

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #3a3a3a;
}

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

.legal-page li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #3a3a3a;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 46px;
    }

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

    .service-image-wrapper {
        min-width: 100%;
        height: 300px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 50px;
    }

    .about-content-split {
        flex-direction: column;
        gap: 50px;
    }

    .service-item-detailed,
    .service-item-detailed:nth-child(odd) {
        flex-direction: column;
    }
}

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-minimal {
        padding: 0 20px;
        margin-top: 40px;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }

    .services-minimal,
    .intro-offset,
    .form-section-centered,
    .contact-page,
    .about-hero,
    .services-page-header,
    .legal-page {
        padding: 0 20px;
    }
}