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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: white;
}

.cookie-btn.reject:hover {
    background-color: #646d6e;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c5f4f;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c5f4f;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(44, 95, 79, 0.85);
    padding: 50px 60px;
    border-radius: 8px;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

section {
    padding: 80px 30px;
}

.alt-bg {
    background-color: #f9f9f9;
}

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

.content-wrapper.narrow {
    max-width: 800px;
}

.content-wrapper.wide {
    max-width: 1200px;
}

h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c5f4f;
}

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

.intro-section h2 {
    font-size: 32px;
    color: #c0392b;
    margin-bottom: 30px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-side {
    flex: 1;
}

.image-side {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.testimonial {
    background-color: #f0f8f5;
    padding: 30px;
    border-left: 4px solid #2c5f4f;
    margin-top: 40px;
}

.testimonial .quote {
    font-style: italic;
    font-size: 19px;
    color: #34495e;
    margin-bottom: 15px;
}

.testimonial .author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.features-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-image {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
}

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

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 24px;
    font-weight: bold;
}

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

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-content {
    padding: 35px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #2c5f4f;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #234a3e;
}

.cta-button.large {
    padding: 18px 48px;
    font-size: 18px;
}

.main-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #234a3e;
}

.final-cta {
    text-align: center;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

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

.footer-section p {
    color: #bdc3c7;
    font-size: 15px;
}

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

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

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

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

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

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    h2 {
        font-size: 28px;
    }

    section {
        padding: 50px 20px;
    }
}