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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.nav-minimal {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.editorial-content {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-editorial img {
    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: 52px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    opacity: 0.9;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 30px;
}

.narrow-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
}

.narrow-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.inline-image {
    margin: 50px 0;
    background-color: #e8e8e8;
}

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

.content-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    display: block;
    background-color: #e8e8e8;
    object-fit: cover;
}

.problem-section {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.insight-box {
    background-color: #fff;
    border-left: 4px solid #2c2c2c;
    padding: 30px;
    margin: 40px 0;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.insight-box p {
    font-size: 17px;
    line-height: 1.6;
}

.cta-inline {
    text-align: center;
    padding: 50px 30px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #000;
    cursor: pointer;
}

.solution-reveal {
    background-color: #fff;
}

.testimonial-section {
    background-color: #f9f9f9;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.testimonial-card {
    max-width: 600px;
    background-color: #fff;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.testimonial-card cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 15px;
    color: #777;
}

.services-preview {
    padding: 80px 30px;
    background-color: #fff;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background-color: #fafafa;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.service-item h3 {
    font-size: 24px;
    margin: 25px 20px 15px;
    font-weight: 600;
}

.service-item p {
    margin: 0 20px 15px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.service-item .price {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 20px 20px 15px;
}

.btn-select {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-section {
    background-color: #f5f5f5;
    padding: 80px 30px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 2px;
}

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

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

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

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

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

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

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

.final-message {
    background-color: #fff;
    padding: 80px 30px;
}

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #252525;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c2c2c;
    padding: 25px;
    box-shadow: 0 -2px 10px 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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

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

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

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

.btn-accept {
    background-color: #2c2c2c;
    color: #fff;
}

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

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

.btn-reject:hover {
    background-color: #ccc;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 400;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #4a7c4e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.page-header {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 400;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.page-content ul li {
    margin-bottom: 10px;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 30px;
    margin: 40px 0;
}

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

.contact-info p {
    margin: 10px 0;
}

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

    .nav-links {
        gap: 20px;
    }

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

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

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

    .narrow-text h2 {
        font-size: 28px;
    }
}