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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.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-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-brand {
    font-weight: 700;
    font-size: 20px;
    color: #2c3e50;
}

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

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

.nav-links a:hover {
    color: #2c3e50;
}

.ad-notice {
    font-size: 12px;
    color: #999;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    padding: 140px 60px 60px;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    max-width: 550px;
    margin-top: 80px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,62,80,0.3);
}

.hero-visual-overlap {
    position: absolute;
    right: -100px;
    top: 20%;
    width: 55%;
    height: 60%;
    z-index: 1;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
}

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

.offset-intro {
    padding: 120px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: #f8f9fa;
}

.intro-narrow {
    flex: 1;
    max-width: 500px;
    margin-left: 100px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.intro-image-side {
    flex: 1;
    background: #e8ecef;
    border-radius: 15px;
    overflow: hidden;
}

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

.services-asymmetric {
    padding: 100px 60px;
    background: white;
}

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

.section-header-rotated h2 {
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
}

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

.card-shift-1 {
    margin-top: 0;
}

.card-shift-2 {
    margin-top: 40px;
}

.card-shift-3 {
    margin-top: 20px;
}

.card-shift-4 {
    margin-top: 60px;
}

.card-shift-5 {
    margin-top: 30px;
}

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.service-card .price {
    padding: 0 25px 20px;
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    margin: 0 25px 25px;
    padding: 14px 30px;
    background: #ecf0f1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    width: calc(100% - 50px);
}

.select-service:hover {
    background: #2c3e50;
    color: white;
}

.select-service.selected {
    background: #27ae60;
    color: white;
}

.form-section-diagonal {
    padding: 120px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    gap: 80px;
    align-items: center;
}

.form-container {
    flex: 1;
    max-width: 550px;
    margin-left: 80px;
}

.form-container h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 40px;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    background: rgba(255,255,255,0.95);
}

.service-display {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 15px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

.form-visual {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.trust-content-wide h2 {
    font-size: 44px;
    margin-bottom: 60px;
    color: #2c3e50;
    text-align: center;
}

.trust-points-scattered {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-point {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.point-1 {
    transform: translateY(-20px);
}

.point-2 {
    transform: translateY(20px);
}

.point-3 {
    transform: translateY(0);
}

.trust-point h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trust-point p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.footer-asymmetric {
    background: #1a252f;
    color: white;
    padding: 80px 60px 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

.footer-col ul li a:hover {
    color: white;
}

.footer-col-1 {
    margin-right: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    max-width: 900px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 60px 60px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 52px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 19px;
    color: #666;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-container .selected-service-info {
    background: #f8f9fa;
    padding: 25px 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    max-width: 500px;
}

.thanks-container .selected-service-info strong {
    color: #2c3e50;
    font-size: 17px;
}

.services-page-header,
.about-header,
.contact-header {
    padding: 180px 60px 80px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    text-align: center;
}

.services-header-content h1,
.about-header-content h1,
.contact-header-content h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
}

.services-header-content p,
.about-header-content p,
.contact-header-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

.services-detail-section {
    padding: 80px 60px;
    background: white;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #555;
    font-size: 15px;
}

.service-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.about-story {
    padding: 100px 60px;
    background: white;
}

.story-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-values {
    padding: 100px 60px;
    background: #f8f9fa;
}

.about-values h2 {
    font-size: 44px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    background: white;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    min-width: 300px;
}

.value-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.about-team {
    padding: 100px 60px;
    background: white;
}

.team-intro {
    text-align: center;
    margin-bottom: 60px;
}

.team-intro h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.about-process {
    padding: 100px 60px;
    background: #f8f9fa;
}

.about-process h2 {
    font-size: 44px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #ecf0f1;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.process-step p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.contact-main {
    padding: 80px 60px;
    background: white;
}

.contact-info-section {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px 35px;
    border-radius: 10px;
}

.contact-card h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.email-note {
    font-size: 13px;
    color: #999;
}

.hours-note {
    margin-top: 15px;
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
}

.contact-map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.map-overlay {
    text-align: center;
}

.map-overlay p {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.contact-cta {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.cta-content h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.legal-page {
    padding: 140px 60px 80px;
    background: white;
}

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

.legal-content h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.legal-updated {
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 25px;
        top: 10px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 120px 30px 60px;
    }

    .hero-visual-overlap {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 40px;
    }

    .hero-content-offset {
        margin-top: 20px;
    }

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

    .offset-intro {
        flex-direction: column;
        padding: 80px 30px;
        gap: 40px;
    }

    .intro-narrow {
        margin-left: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
        padding: 80px 30px;
    }

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

    .services-grid-offset {
        flex-direction: column;
    }

    .service-card {
        margin-top: 0 !important;
    }

    .service-detail {
        flex-direction: column;
        margin-bottom: 60px;
    }

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

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

    .process-steps {
        flex-direction: column;
    }

    .contact-info-section {
        flex-direction: column;
    }
}