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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-minimal {
    margin-top: 80px;
    padding: 8rem 3rem 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: #0a0a0a;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

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

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

.content-narrow h2 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.content-narrow p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.8rem;
}

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

.services-preview h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 1.8rem 1.8rem 1rem;
    color: #0a0a0a;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin: 0 1.8rem 1.5rem;
}

.service-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
    margin: 0 1.8rem 1.5rem;
}

.btn-service {
    width: calc(100% - 3.6rem);
    margin: 0 1.8rem 1.8rem;
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 8rem 3rem;
    background-color: #0a0a0a;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.trust-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 1.8rem;
}

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

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

.form-container h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.form-container > p {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fafafa;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    background-color: #ffffff;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #0a0a0a;
    color: #d0d0d0;
    padding: 5rem 3rem 2rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: #888;
}

.page-header {
    margin-top: 80px;
    padding: 5rem 3rem 3rem;
    text-align: center;
    background-color: #fafafa;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.page-header p {
    font-size: 1.3rem;
    color: #555;
}

.about-content {
    padding: 6rem 3rem;
}

.about-approach {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-text {
    flex: 1 1 450px;
}

.approach-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.approach-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.approach-image {
    flex: 1 1 450px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.values-section {
    padding: 6rem 3rem;
}

.values-list {
    margin-top: 3rem;
}

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.value-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

.expertise-section {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.expertise-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.expertise-list li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.8rem;
}

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

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1 1 500px;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.3rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0066cc;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    flex: 1 1 450px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e5e5;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

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

.contact-info {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1 1 450px;
}

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

.info-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #0a0a0a;
}

.info-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.info-item .note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1 1 450px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.privacy-note {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.thanks-section {
    margin-top: 80px;
    padding: 8rem 3rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-details {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.thanks-details p {
    margin-bottom: 0;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #0052a3;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 3rem 6rem;
}

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

.legal-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #222;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.legal-content em {
    color: #666;
    font-size: 0.95rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0052a3;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1.5rem 3rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

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

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

    .hero-minimal {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .content-narrow h2 {
        font-size: 2rem;
    }

    .services-preview h2 {
        font-size: 2.5rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .approach-content,
    .service-detail,
    .contact-info {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .legal-content h1 {
        font-size: 2.2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}