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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    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-actions {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

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

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

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

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

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

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

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

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

.hero-visual {
    width: 100%;
    height: 90vh;
    position: relative;
    margin-top: 0;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2a2a2a;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

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

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
}

.intro-narrative {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
}

.narrative-text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.visual-break {
    width: 100%;
    height: 500px;
    background-color: #1a1a1a;
    margin: 80px 0;
}

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

.services-reveal {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

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

.section-header p {
    font-size: 18px;
    color: #555;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 350px;
}

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

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

.service-select:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.trust-building {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    gap: 60px;
    padding: 0 40px;
}

.trust-content {
    flex: 1.2;
}

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

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.trust-visual {
    flex: 1;
    background-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-inline {
    padding: 80px 40px;
    background-color: #2a2a2a;
    color: #ffffff;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 40px;
    border-left: 4px solid #d4af37;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #d4af37;
}

.cta-immersive {
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.cta-overlay-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-overlay-content p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    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: #d4af37;
}

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

.btn-submit:hover {
    background-color: #b8941f;
}

.final-visual {
    width: 100%;
    height: 400px;
    background-color: #1a1a1a;
}

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

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

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

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

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

.footer-column p {
    font-size: 14px;
    color: #aaa;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #bbb;
}

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

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

.thanks-container {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #d4af37;
}

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

.thanks-service {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 30px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.btn-home {
    display: inline-block;
    padding: 14px 35px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

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

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ddd;
        padding-top: 15px;
    }

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

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

    .service-card {
        flex-direction: column;
    }

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

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

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