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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 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: 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-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

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

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

.main-nav {
    padding: 2rem 3rem;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    text-decoration: none;
    color: #1a1a1a;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 4px;
}

.hero-minimal {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto 4rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: #666;
    max-width: 600px;
}

.hero-visual {
    max-width: 1400px;
    margin: 0 auto;
    background: #f5f5f5;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-section {
    padding: 8rem 3rem;
    background: #fafafa;
}

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

.content-narrow h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.content-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.visual-break {
    height: 70vh;
    overflow: hidden;
    background: #e0e0e0;
}

.visual-break img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-preview {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 5rem;
    text-align: center;
    letter-spacing: -0.01em;
}

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

.service-card-minimal {
    width: 360px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card-minimal h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 2rem 1rem;
}

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

.price {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0 2rem 2rem;
    color: #1a1a1a;
}

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

.btn-select-service:hover {
    background: #333;
}

.approach-section {
    padding: 8rem 3rem;
    background: #fafafa;
}

.split-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.content-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-visual {
    flex: 1;
    background: #e0e0e0;
}

.content-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonials-section {
    padding: 8rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.testimonial-block {
    margin-bottom: 3rem;
    padding: 3rem;
    background: #fafafa;
}

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

.testimonial-author {
    font-size: 1rem;
    color: #666;
}

.form-section {
    padding: 8rem 3rem;
    background: #fafafa;
}

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

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
}

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

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    padding: 4rem 3rem;
    background: #f5f5f5;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.main-footer {
    padding: 5rem 3rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: #999;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

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

.footer-col 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;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 3rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

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

.thanks-service {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin: 2rem 0;
    font-weight: 400;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.page-header {
    padding: 6rem 3rem 4rem;
    background: #fafafa;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    max-width: 1400px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
}

.page-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.page-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #333;
}

.services-full-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.service-full-card {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.service-full-image {
    flex: 1;
    max-width: 500px;
    height: 350px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.service-full-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-full-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-full-content .price {
    font-size: 2.2rem;
    font-weight: 300;
    margin: 1.5rem 0;
    color: #1a1a1a;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

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

    .nav-links {
        gap: 1.5rem;
    }

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

    .services-grid-minimal {
        flex-direction: column;
        align-items: center;
    }

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

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