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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.btn-cookie-accept {
    background: #4CAF50;
    color: white;
}

.btn-cookie-reject {
    background: #666;
    color: white;
}

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

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 11px;
    color: #999;
    font-style: italic;
    padding: 4px 12px;
    border-left: 1px solid #ddd;
}

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

.nav-links a {
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-center {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero-text-center h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-center p {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.intro-minimal {
    padding: 100px 20px;
    background: #f9f9f9;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.narrow-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.image-half {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.content-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: #ffffff;
}

.content-half h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.content-half p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.image-statement-overlay {
    position: relative;
    height: 500px;
    margin: 0;
}

.statement-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.statement-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.statement-text h2 {
    font-size: 48px;
    font-weight: 300;
    color: white;
    text-align: center;
    max-width: 800px;
}

.services-visual-grid {
    padding: 100px 20px;
    background: #ffffff;
}

.section-intro-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro-center h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

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

.service-card-visual {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card-visual:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 12px 20px;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #444;
}

.form-overlay-section {
    padding: 100px 20px;
    background: #f4f4f4;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.selected-service-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 15px 30px;
    background: #2c2c2c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #444;
}

.visual-testimonial {
    position: relative;
    height: 450px;
}

.testimonial-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

blockquote {
    max-width: 700px;
    text-align: center;
    color: white;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.trust-inline {
    padding: 100px 20px;
    background: #ffffff;
}

.cta-visual-block {
    padding: 120px 20px;
    background: #2c2c2c;
    text-align: center;
}

.cta-content-overlay h2 {
    font-size: 48px;
    font-weight: 300;
    color: white;
    margin-bottom: 15px;
}

.cta-content-overlay p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-cta-scroll {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #2c2c2c;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    transition: transform 0.3s;
}

.btn-cta-scroll:hover {
    transform: scale(1.05);
}

.footer {
    background: #1a1a1a;
    color: #cccccc;
    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-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

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

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

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 80px;
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #2c2c2c;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section ul {
    list-style-position: inside;
    margin-bottom: 15px;
}

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.contact-info-block {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info-block h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info-block .email-text {
    font-weight: 500;
    color: #2c2c2c;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.thanks-content .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #2c2c2c;
    color: white;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s;
}

.thanks-content .btn-home:hover {
    background: #444;
}

@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 36px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .visual-block-left {
        flex-direction: column;
    }

    .content-half {
        padding: 40px 20px;
    }

    .service-card-visual {
        flex: 1 1 100%;
    }

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

    .statement-text h2 {
        font-size: 32px;
    }
}