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

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

.floating-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

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

.hero-image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.9;
}

.story-intro {
    padding: 120px 20px;
    background: #fafafa;
}

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

.narrow-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.image-break {
    height: 600px;
    background-color: #2a2a2a;
}

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

.problem-reveal {
    padding: 100px 20px;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 400;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    background-color: #f5f5f5;
}

.image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.insight-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: #fff;
}

.centered-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 46px;
    margin-bottom: 40px;
    font-weight: 300;
}

.centered-block p {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.visual-grid {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px;
}

.grid-item {
    flex: 1;
    background-color: #f9f9f9;
}

.grid-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.grid-item h3 {
    padding: 25px 20px 10px;
    font-size: 22px;
    font-weight: 500;
}

.grid-item p {
    padding: 0 20px 25px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.trust-layer {
    padding: 100px 20px;
    background: #f5f5f5;
}

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

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 15px;
}

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

.service-reveal {
    padding: 120px 20px;
    background: #fff;
}

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

.services-container h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
}

.services-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fafafa;
    padding: 40px;
    transition: transform 0.3s;
}

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

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

.service-card img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #e5e5e5;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-card p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.select-service {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

.form-container > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-link {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.cta-link:hover {
    background: #b8941f;
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 30px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #777;
    font-style: italic;
    max-width: 900px;
    margin: 10px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #fff;
    padding: 25px 20px;
    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;
}

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

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

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

.cookie-accept {
    background: #d4af37;
    color: #fff;
}

.cookie-accept:hover {
    background: #b8941f;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

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

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

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

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

    .service-card img {
        width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-nav {
        padding: 0 20px;
        top: 20px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}