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

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6366f1;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: #6366f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
}

.cta-hero:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.intro-story {
    padding: 100px 20px;
    background: #f9fafb;
}

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

.intro-story h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-story p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #4b5563;
}

.visual-block {
    padding: 0;
}

.split-visual {
    display: flex;
    min-height: 600px;
}

.visual-left,
.visual-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: #f3f4f6;
}

.visual-left img,
.visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-left {
    background: #ffffff;
}

.visual-right h3,
.visual-left h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.visual-right p,
.visual-left p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #6b7280;
}

.price-tag {
    font-size: 32px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 25px;
}

.btn-select {
    padding: 15px 35px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.visual-block.reverse .split-visual {
    flex-direction: row-reverse;
}

.form-section {
    padding: 80px 20px;
    background: #ffffff;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 20px;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

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

.trust-block {
    padding: 100px 20px;
    background: #1f2937;
    color: #ffffff;
}

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

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.trust-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.trust-card p {
    font-size: 16px;
    opacity: 0.85;
}

.footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 20px 20px;
}

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

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

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 14px;
    color: #6b7280;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    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;
    font-size: 15px;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background: #6366f1;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: #4b5563;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #374151;
    transform: translateY(-2px);
}

.page-header {
    padding: 150px 20px 80px;
    background: #f9fafb;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    color: #6b7280;
}

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

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

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

.service-img-large {
    flex: 1;
}

.service-img-large img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4b5563;
}

.service-details ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-details ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #6b7280;
}

.price-large {
    font-size: 38px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 20px;
}

.about-content {
    padding: 60px 20px 100px;
}

.about-intro-visual {
    margin-bottom: 60px;
}

.about-intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 36px;
    margin: 40px 0 20px;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4b5563;
}

.about-image-bottom {
    margin-top: 60px;
}

.about-image-bottom img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.contact-section {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.contact-additional {
    padding: 80px 20px;
    background: #f9fafb;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-additional p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4b5563;
}

.thanks-section {
    padding: 150px 20px 100px;
    min-height: 70vh;
}

.thanks-content {
    text-align: center;
    padding: 60px 40px;
    background: #f9fafb;
    border-radius: 12px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #4b5563;
}

#selectedServiceDisplay {
    font-size: 22px;
    font-weight: 700;
    color: #6366f1;
    margin: 30px 0;
}

.btn-back {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #6366f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s, transform 0.3s;
}

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

.legal-page {
    padding: 150px 20px 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 15px;
    font-weight: 700;
}

.legal-page p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4b5563;
    line-height: 1.7;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        width: 95%;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .split-visual {
        flex-direction: column;
    }

    .visual-block.reverse .split-visual {
        flex-direction: column;
    }

    .service-full-card,
    .service-full-card:nth-child(even) {
        flex-direction: column;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}