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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.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;
    min-width: 300px;
}

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

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

.btn-cookie:hover {
    background: #45a049;
}

.btn-cookie.btn-secondary {
    background: #666;
}

.btn-cookie.btn-secondary:hover {
    background: #555;
}

.main-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-disclosure {
    font-size: 11px;
    color: #888;
    border-left: 1px solid #ddd;
    padding-left: 28px;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #2a3f5f;
}

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

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

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #45a049;
}

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

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.image-text-section {
    padding: 0;
}

.bg-light {
    background: #f8f9fa;
}

.section-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.split-image {
    flex: 1;
    min-width: 50%;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #444;
}

.citation {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-info {
    padding: 28px;
}

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

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

.price {
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}

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

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

.benefits-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: #fff;
    border-left: 4px solid #4CAF50;
}

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

.benefit-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.testimonials-section {
    padding: 100px 20px;
}

.bg-dark {
    background: #1a1a1a;
    color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

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

.testimonial-author {
    font-size: 14px;
    color: #aaa;
}

.cta-section {
    padding: 100px 20px;
    background: #fff;
}

.cta-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section > .section-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #45a049;
}

.disclaimer-section {
    padding: 60px 20px;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

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

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-references p {
    font-size: 12px;
    line-height: 1.8;
}

.footer-references a {
    color: #4CAF50;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

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

.contact-page {
    padding: 80px 20px;
    background: #fff;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    max-width: 800px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

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

.page-section h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.page-section h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #333;
}

.page-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

.page-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-section li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #444;
}

.thanks-page {
    padding: 100px 20px;
    background: #fff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #4CAF50;
}

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

.thanks-content .service-selected {
    font-weight: 600;
    color: #1a1a1a;
}

.back-home {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

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

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

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

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

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

    .nav-links {
        gap: 16px;
    }

    .ad-disclosure {
        border-left: none;
        padding-left: 0;
        width: 100%;
        margin-top: 10px;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}