* {
    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: #333;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

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

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

.btn-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3580d6;
}

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    min-height: 600px;
    margin-bottom: 80px;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f8f8;
}

.hero-content-left h1 {
    font-size: 52px;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 540px;
    color: #555;
}

.hero-image-right {
    flex: 1;
    min-height: 600px;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    margin-bottom: 100px;
    gap: 40px;
    padding: 0 40px;
}

.intro-block-small {
    flex: 0.6;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-block-small h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-block-small p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.intro-image-large {
    flex: 1;
    min-height: 400px;
}

.intro-image-large img {
    width: 100%;
    height: 100%;
}

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

.section-header-offset {
    margin-left: 120px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 450px;
}

.card-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 350px;
}

.card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #f0f0f0;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-offset {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.form-container-creative {
    max-width: 700px;
    margin-left: 10%;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.inquiry-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
}

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

.trust-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 16px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: 700;
    font-size: 20px;
}

.trust-image {
    flex: 1;
    min-height: 400px;
}

.trust-image img {
    width: 100%;
    height: 100%;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff9e6;
    border-top: 2px solid #f0d97d;
    border-bottom: 2px solid #f0d97d;
}

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

.disclaimer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ccc;
}

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

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #4a9eff;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.about-hero {
    padding: 120px 40px 80px;
    background-color: #f5f5f5;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.story-content-offset {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-block {
    flex: 1;
}

.story-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    flex: 0.8;
    min-height: 450px;
}

.story-image img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 80px 40px;
    background-color: #f8f8f8;
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

.team-intro {
    margin-bottom: 40px;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 18px;
    color: #666;
}

.team-image-full {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.team-image-full img {
    width: 100%;
    height: 100%;
}

.cta-about {
    padding: 100px 40px;
    background-color: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.services-header {
    padding: 120px 40px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.services-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-size: 24px;
    line-height: 1;
}

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

.btn-select-service {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.services-cta {
    padding: 80px 40px;
    background-color: #f8f8f8;
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.contact-header {
    padding: 120px 40px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.contact-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 20px;
    color: #666;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.contact-map-placeholder {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-placeholder p {
    font-size: 20px;
    color: #999;
}

.contact-additional {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-additional p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.thanks-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-confirmation {
    font-weight: 600;
    color: #4a9eff;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-back:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.thanks-image {
    flex: 0.8;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    height: 100%;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

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

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

.legal-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: #4a9eff;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .service-grid-asymmetric {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
        min-width: 100%;
    }

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

    .story-content-offset {
        flex-direction: column;
    }

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

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

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

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

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content-left {
        padding: 60px 30px;
    }

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

    .section-header-offset {
        margin-left: 0;
    }

    .services-staggered {
        padding: 60px 20px;
    }

    .form-container-creative {
        margin-left: 0;
    }

    .inquiry-form {
        padding: 30px 20px;
    }

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

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