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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafaf9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e0e0e0;
}

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

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

.main-nav {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #999;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-minimal {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

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

.text-block-centered {
    max-width: 720px;
    margin: 0 auto;
}

.text-block-centered h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.text-block-centered p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: #4a4a4a;
}

.image-text-offset {
    padding: 6rem 2rem;
    background: #f5f5f2;
}

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

.offset-image {
    flex: 1;
    background: #e8e8e5;
}

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

.offset-text {
    flex: 1;
}

.offset-text h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.offset-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.spacious-content {
    padding: 10rem 2rem;
}

.large-quote {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.large-quote blockquote p {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.4;
    color: #2c2c2c;
}

.minimal-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
}

.grid-item {
    flex: 1;
    background: #ffffff;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
    object-fit: cover;
}

.grid-item h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.grid-item p {
    font-size: 1rem;
    color: #666;
    padding: 0 1.5rem 1.5rem;
}

.testimonial-inline {
    padding: 8rem 2rem;
    background: #2c2c2c;
    color: #ffffff;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.8;
}

.approach-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-text {
    max-width: 720px;
    margin: 0 auto;
}

.approach-text h2 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.approach-text p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: #4a4a4a;
}

.service-selector {
    padding: 8rem 2rem;
    background: #f9f9f7;
}

.service-selector h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 5rem;
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
    background: #e8e8e5;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.5rem 1.5rem 1rem;
    line-height: 1.4;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    padding: 1rem 1.5rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #1a1a1a;
}

.form-section {
    padding: 8rem 2rem;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.selected-service-display {
    background: #f5f5f5;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #2c2c2c;
}

.selected-service-display p {
    margin: 0;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1a1a1a;
}

.final-thought {
    padding: 10rem 2rem;
    background: #2c2c2c;
    color: #ffffff;
}

.thought-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thought-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.thought-content p {
    font-size: 1.3rem;
    font-weight: 300;
}

.disclaimer-section {
    padding: 4rem 2rem;
    background: #f5f5f2;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .offset-container {
        flex-direction: column;
        gap: 3rem;
    }

    .minimal-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}