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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    padding: 32px 0;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

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

.nav-brand {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 48px 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin-bottom: 64px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

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

.intro-spacing {
    padding: 160px 48px;
    background-color: #fafafa;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

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

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.intro-spacing h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.intro-spacing p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.image-text-offset {
    padding: 120px 48px;
}

.offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.offset-text {
    flex: 1;
}

.offset-text h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 32px;
}

.offset-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.offset-image {
    flex: 1;
    height: 600px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.services-preview {
    padding: 160px 48px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
}

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

.service-card {
    width: calc(33.333% - 32px);
    min-width: 300px;
    background-color: #fafafa;
    transition: transform 0.3s ease;
}

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

.service-image-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e8e8e8;
    margin-bottom: 32px;
}

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

.service-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    padding: 0 24px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
    padding: 0 24px;
}

.service-price {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 24px;
    padding: 0 24px;
    color: #1a1a1a;
}

.btn-service {
    width: calc(100% - 48px);
    margin: 0 24px 32px;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

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

.testimonial-section {
    padding: 120px 48px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonial-section blockquote {
    text-align: center;
}

.testimonial-section p {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

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

.form-section {
    padding: 160px 48px;
    background-color: #fafafa;
}

.form-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 64px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #4a4a4a;
}

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #1a1a1a;
    font-weight: 500;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.approach-section {
    padding: 160px 48px;
}

.approach-section h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 32px;
}

.approach-section p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 48px 32px;
}

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

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 48px;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #666;
}

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

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 48px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 20px;
    color: #666;
    margin-bottom: 16px;
    max-width: 600px;
}

.thanks-container .service-selected {
    font-size: 24px;
    font-weight: 500;
    margin: 32px 0;
    color: #1a1a1a;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 48px;
    padding: 16px 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

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

.page-header {
    padding: 120px 48px 80px;
    background-color: #fafafa;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 24px;
}

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

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

.page-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin: 64px 0 24px;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 48px 0 16px;
}

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

.page-content ul {
    margin: 20px 0 20px 32px;
}

.page-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.contact-info {
    background-color: #fafafa;
    padding: 48px;
    margin: 48px 0;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.about-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
}

.about-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-intro-image {
    flex: 1;
    height: 500px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.services-list {
    padding: 80px 48px;
}

.services-list-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-list h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 64px;
    text-align: center;
}

.service-item {
    display: flex;
    gap: 64px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

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

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

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

.service-item-content h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
}

.service-item-content .service-item-price {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 24px;
}

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

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

    .offset-container {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 24px);
    }

    .about-intro-content {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 24px;
    }

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

    .service-card {
        width: 100%;
    }

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

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