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

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

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

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

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

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

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

.hero-content-offset {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
    margin-left: 40px;
}

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

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.hero-image-stack {
    flex: 1;
    position: relative;
    margin-right: -100px;
    margin-top: 60px;
}

.hero-image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e8f4f8;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

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

.intro-text-narrow {
    flex: 1;
    max-width: 480px;
    margin-left: 80px;
}

.intro-text-narrow h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text-narrow p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-image-aside {
    flex: 1;
    position: relative;
}

.intro-image-aside img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    background-color: #e8f4f8;
}

.services-grid-asymmetric {
    padding: 100px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.section-header-left {
    width: 100%;
    margin-bottom: 40px;
    padding-left: 20px;
}

.section-header-left h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

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

.card-offset {
    flex: 1 1 calc(40% - 15px);
    margin-top: 60px;
}

.card-small {
    flex: 1 1 calc(35% - 15px);
}

.card-wide {
    flex: 1 1 calc(65% - 15px);
    margin-top: -40px;
}

.card-vertical {
    flex: 1 1 calc(50% - 15px);
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}

.btn-select:hover {
    background-color: #0052a3;
    transform: translateX(4px);
}

.form-section-diagonal {
    display: flex;
    min-height: 700px;
    position: relative;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.form-container {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin-left: 60px;
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.form-image-background {
    flex: 1;
    position: relative;
    margin-right: -80px;
}

.form-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1);
    background-color: #e8f4f8;
}

.trust-section {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
}

.trust-item p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.7;
}

.footer {
    background-color: #f9fafb;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.footer-column p {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

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

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

.footer-disclaimer {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

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

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

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

.btn-cookie-reject:hover {
    border-color: #999;
}

.services-page-header {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    text-align: center;
}

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

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

.services-detailed {
    padding: 80px 60px;
}

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

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

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 400px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background-color: #e8f4f8;
}

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

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

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

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

.about-hero {
    padding: 140px 60px 80px;
    background-color: #f9fafb;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 30px;
    color: #1a1a1a;
    max-width: 700px;
}

.about-hero p {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
}

.about-content {
    padding: 80px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1.5;
}

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

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

.about-image {
    flex: 1;
    position: sticky;
    top: 140px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background-color: #e8f4f8;
}

.contact-page {
    min-height: 100vh;
    padding: 140px 60px 80px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-intro {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.7;
}

.contact-grid {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

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

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-service-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
}

.thanks-service-info p {
    font-size: 18px;
    color: #333;
}

.legal-page {
    min-height: 100vh;
    padding: 140px 60px 80px;
}

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

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.legal-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #333;
}

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

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

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

@media (max-width: 1024px) {
    .nav-floating {
        padding: 15px 30px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 100px;
    }

    .hero-content-offset {
        margin-left: 0;
        padding: 40px 30px;
        max-width: 100%;
    }

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

    .hero-image-stack {
        margin-right: 0;
        margin-top: 0;
        height: 400px;
    }

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

    .intro-text-narrow {
        margin-left: 0;
        max-width: 100%;
    }

    .services-grid-asymmetric {
        padding: 60px 30px;
    }

    .card-large,
    .card-offset,
    .card-small,
    .card-wide,
    .card-vertical {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
    }

    .form-container {
        margin-left: 0;
        padding: 40px 30px;
        max-width: 100%;
    }

    .form-image-background {
        margin-right: 0;
        height: 300px;
    }

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .about-content {
        flex-direction: column;
        padding: 60px 30px;
    }

    .about-image {
        position: static;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }
}