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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    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: 20px;
}

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

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

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

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

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

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

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

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

.nav-minimal {
    padding: 32px 5%;
    border-bottom: 1px solid #e8e8e8;
}

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

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

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

.ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 5%;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 70vh;
    background: #f5f5f5;
    z-index: 1;
}

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

.intro-space {
    padding: 120px 5%;
    background: #fafafa;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    color: #333;
}

.featured-services {
    padding: 140px 5%;
}

.services-grid-minimal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.service-card-large {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.service-image-wrap {
    flex: 1;
    background: #f5f5f5;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.service-info p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-top: 16px;
}

.cta-inline {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-minimal-wrap h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-minimal-wrap p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #f0f0f0;
}

.approach-section {
    padding: 140px 5%;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

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

.approach-image {
    flex: 1;
    background: #f5f5f5;
}

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

.testimonials-minimal {
    padding: 100px 5%;
    background: #fafafa;
}

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

.testimonial-quote {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    color: #333;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 15px;
    color: #888;
}

.form-section {
    padding: 120px 5%;
}

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

.form-container-minimal h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.02em;
}

.contact-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

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

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

.btn-submit {
    padding: 18px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

.footer-minimal {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 5% 40px;
}

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 14px;
    color: #aaa;
}

.disclaimer-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.disclaimer-footer p {
    font-size: 12px;
    line-height: 1.6;
    color: #888;
}

.page-hero-simple {
    padding: 120px 5% 60px;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
}

.about-content {
    padding: 80px 5%;
}

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

.about-image-large {
    flex: 1;
    background: #f5f5f5;
}

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

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

.about-text-block h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.about-text-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.values-section {
    padding: 100px 5%;
    background: #fafafa;
}

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

.values-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
}

.values-grid {
    display: flex;
    gap: 60px;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-minimal {
    padding: 100px 5%;
}

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

.team-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.team-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 48px;
    max-width: 800px;
}

.team-image {
    background: #f5f5f5;
}

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

.services-full {
    padding: 80px 5%;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

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

.service-description {
    flex: 1;
}

.service-description h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-duration {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.service-description p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    font-size: 15px;
    color: #666;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.service-price {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cta-services {
    padding: 80px 5%;
    background: #fafafa;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 80px 5%;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.note-small {
    font-size: 14px;
    color: #888;
    margin-top: 12px;
}

.contact-image-block {
    flex: 1;
    background: #f5f5f5;
}

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

.business-info {
    padding: 60px 5%;
    background: #fafafa;
}

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

.business-container h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
}

.business-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.thanks-section {
    padding: 140px 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.service-confirmation {
    font-size: 18px;
    color: #888;
    margin-bottom: 48px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-page {
    padding: 80px 5% 120px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.legal-update {
    font-size: 14px;
    color: #888;
    margin-bottom: 48px;
}

.legal-container h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-minimal {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

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

    .service-card-large,
    .service-card-large:nth-child(2),
    .service-detail-block,
    .service-detail-block.reverse,
    .approach-container,
    .about-layout,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .values-grid {
        flex-direction: column;
        gap: 40px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }
}

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

    .intro-text {
        font-size: 20px;
    }

    .service-info h3 {
        font-size: 28px;
    }

    .cta-minimal-wrap h2,
    .approach-text h2,
    .about-text-block h2,
    .values-container h2,
    .team-container h2,
    .legal-container h1 {
        font-size: 32px;
    }

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

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

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