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

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-fullscreen {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

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

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
}

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

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

.story-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.story-intro {
    font-size: 24px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 60px;
    font-weight: 300;
}

.story-wrapper h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
}

.inline-image-text {
    margin: 50px 0;
}

.inline-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.story-wrapper p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4a4a4a;
    line-height: 1.8;
}

.insight-box {
    background: #fff;
    padding: 40px;
    border-left: 4px solid #1a1a1a;
    margin: 60px 0;
    border-radius: 4px;
}

.insight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.insight-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0;
}

.cta-inline {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
    margin-top: 30px;
}

.cta-inline:hover {
    background: #333;
}

.benefits-asymmetric {
    padding: 100px 20px;
    background: #fff;
}

.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 12px;
    background-color: #fafafa;
}

.benefit-offset-1 {
    margin-top: 0;
}

.benefit-offset-2 {
    margin-top: 60px;
}

.benefit-offset-3 {
    margin-top: 30px;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e5e5e5;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.6;
}

.testimonials-flow {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #fff;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    border-left: 3px solid #fff;
    padding-left: 30px;
}

.testimonial-highlight {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    padding-left: 30px;
    border-left: 3px solid #fff;
    border-radius: 8px;
}

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

.testimonial cite {
    font-size: 15px;
    font-style: normal;
    opacity: 0.8;
}

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

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

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

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 70px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    background-color: #f5f5f5;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-card p {
    margin: 0 25px 15px 25px;
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 25px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.form-note {
    color: #666;
    margin-bottom: 40px;
}

.selected-service-display {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1a1a1a;
    display: none;
}

.selected-service-display.visible {
    display: block;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

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

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

.submit-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 20px;
    background: #fff;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-container h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 15px;
    color: #666;
}

.final-cta {
    padding: 100px 20px;
    background: #1a1a1a;
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: transform 0.3s;
}

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

.footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 60px 20px 20px 20px;
}

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

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

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

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

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

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: #4a4a4a;
}

.cookie-content a {
    color: #1a1a1a;
    font-weight: 600;
}

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

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

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

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

.cookie-reject {
    background: #f0f0f0;
    color: #4a4a4a;
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #fafafa;
    border-radius: 12px;
}

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

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

.thanks-details {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.thanks-details strong {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    color: #1a1a1a;
}

.thanks-back {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-back:hover {
    background: #333;
}

.contact-page,
.about-page,
.services-page,
.legal-page {
    padding: 80px 20px;
    min-height: 60vh;
}

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

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

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

.page-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.page-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.page-container ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.page-container li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.contact-info {
    background: #fafafa;
    padding: 35px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.service-item {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #1a1a1a;
}

.service-item h3 {
    margin-top: 0;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 15px;
}

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

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

    .benefits-container {
        flex-direction: column;
    }

    .benefit-offset-1,
    .benefit-offset-2,
    .benefit-offset-3 {
        margin-top: 0;
    }

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

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

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