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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.ad-disclosure {
    background: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

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

.header-minimal {
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-minimal .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

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

.nav-floating a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-floating a:hover {
    color: #007bff;
}

.hero-fullscreen {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-content-center {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 40px;
}

.hero-title-large {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

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

.intro-narrow {
    padding: 100px 20px;
}

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

.intro-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.split-section {
    display: flex;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content {
    padding: 60px;
    max-width: 500px;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.btn-inline {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

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

.story-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-section h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.inline-image-block {
    margin: 40px 0;
    background: #e8e8e8;
}

.inline-image-block img {
    width: 100%;
    display: block;
}

.feature-list {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    font-size: 17px;
    position: relative;
    color: #444;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
}

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

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background: #f9f9f9;
    border-left: 4px solid #007bff;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #444;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card-image {
    flex: 0 0 300px;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.btn-card {
    padding: 14px 28px;
    background: #007bff;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-card:hover {
    background: #0056b3;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.order-form {
    background: #fff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

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

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-row input[readonly] {
    background: #f9f9f9;
    color: #666;
}

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

.btn-submit:hover {
    background: #0056b3;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.disclaimer-text {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #222;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #ddd;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    color: #555;
    flex: 1;
}

.cookie-content a {
    color: #007bff;
}

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

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

.btn-cookie-accept {
    background: #007bff;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #0056b3;
}

.btn-cookie-reject {
    background: #f0f0f0;
    color: #333;
}

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

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

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

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

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

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

    .card-image {
        flex: 0 0 250px;
    }

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

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

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}