* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 17px;
}

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-minimal {
    padding: 40px 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    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;
}

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

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

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 50px;
    font-weight: 400;
}

.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.cta-primary:hover {
    background-color: #333333;
}

.hero-image-container {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

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

.spacer-large {
    height: 160px;
}

.spacer-medium {
    height: 80px;
}

.intro-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-wrapper {
    max-width: 800px;
}

.intro-text {
    font-size: 28px;
    line-height: 1.6;
    color: #2a2a2a;
    font-weight: 400;
}

.problem-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.problem-content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.problem-visual {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.services-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-heading {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 80px;
    color: #1a1a1a;
    text-align: center;
}

.services-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-card-minimal {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card-minimal img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.service-card-minimal h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.service-card-minimal p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
}

.select-service {
    align-self: flex-start;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

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

.contact-form input[type="text"],
.contact-form input[type="email"] {
    padding: 18px 20px;
    font-size: 17px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus {
    outline: none;
    border-color: #1a1a1a;
}

.selected-service-display {
    padding: 18px 20px;
    background-color: #f5f5f5;
    border-radius: 6px;
    font-size: 17px;
    color: #1a1a1a;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.submit-btn {
    align-self: flex-start;
    padding: 18px 45px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.trust-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.trust-content {
    max-width: 800px;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 40px;
    margin-top: 160px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 30px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #1a1a1a;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.cookie-accept:hover {
    background-color: #333333;
}

.cookie-reject {
    background-color: #f5f5f5;
    color: #1a1a1a;
}

.cookie-reject:hover {
    background-color: #e0e0e0;
}

.about-hero,
.services-hero,
.contact-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.services-hero p,
.contact-hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-top: 20px;
    max-width: 800px;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-block {
    display: flex;
    gap: 100px;
    align-items: center;
}

.about-block img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 12px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.about-text p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.philosophy-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.philosophy-content {
    max-width: 800px;
}

.philosophy-content h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.team-approach {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.approach-item h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.approach-item p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-detail-card {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.service-detail-image {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-details {
    display: flex;
    gap: 100px;
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
}

.email-display {
    user-select: text;
    cursor: text;
}

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

.legal-content h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 10px;
}

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

.thanks-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.thanks-service {
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .problem-content,
    .about-block,
    .service-detail-card,
    .contact-details {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-links {
        gap: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}