* {
    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: #212121;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-logo a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d32f2f;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #757575;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    gap: 2rem;
}

.nav-main a {
    color: #424242;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #d32f2f;
}

.hero-section {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #424242;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro-section {
    background-color: #f5f5f5;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #424242;
}

.story-section {
    padding: 4rem 0;
}

.story-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #d32f2f;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.insight-section {
    background-color: #fafafa;
}

.insight-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #212121;
}

.insight-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.benefits-reveal {
    padding: 4rem 0;
}

.benefits-reveal h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #212121;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.benefit-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #424242;
}

.benefit-card p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    color: #616161;
}

.testimonial-section {
    background-color: #fff3e0;
    padding: 3rem 0;
}

.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #ffa000;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial footer {
    font-style: normal;
    font-weight: 600;
    color: #424242;
}

.services-preview {
    padding: 4rem 0;
    background-color: #fafafa;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #212121;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #616161;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    background-color: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d32f2f;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #424242;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.price-reveal {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 1.5rem 0;
}

.btn-select {
    background-color: #d32f2f;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #b71c1c;
}

.btn-select.selected {
    background-color: #4caf50;
}

.form-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-form h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.container-form > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #616161;
}

.main-form {
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #424242;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdbdbd;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #d32f2f;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.trust-section {
    background-color: #e8f5e9;
    padding: 2rem 0;
}

.trust-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2e7d32;
}

.trust-section p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.disclaimer-section {
    background-color: #fff9e6;
    padding: 2rem 0;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #616161;
}

.footer-main {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    color: #bdbdbd;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    text-align: center;
    border-top: 1px solid #424242;
    margin-top: 2rem;
}

.footer-bottom p {
    color: #9e9e9e;
    font-size: 0.9rem;
}

.contact-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #212121;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #d32f2f;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #424242;
}

.contact-item p {
    line-height: 1.6;
    color: #616161;
}

.about-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #212121;
}

.about-content {
    line-height: 1.8;
}

.about-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #d32f2f;
}

.about-content p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.about-image {
    width: 100%;
    margin: 2rem 0;
    background-color: #e0e0e0;
}

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

.services-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #212121;
    text-align: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
}

.service-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d32f2f;
}

.service-card p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #424242;
}

.legal-page {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #212121;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #424242;
}

.legal-page p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.7;
}

.thanks-page {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4caf50;
}

.thanks-page p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-details {
    background-color: #f5f5f5;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #424242;
}

.thanks-details p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-main {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

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

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

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