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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #27ae60;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    background: #27ae60;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #229954;
}

.cta-button.secondary {
    background: #3498db;
}

.cta-button.secondary:hover {
    background: #2980b9;
}

.intro-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.split-image {
    flex: 1;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 200px;
    background: #e8f5e9;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
}

.price {
    padding: 0 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.8rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cta-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #555;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fff3cd;
}

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

.disclaimer-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #856404;
}

.disclaimer-content p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #27ae60;
}

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

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

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #27ae60;
}

.footer-column p {
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

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

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

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

.cookie-content p {
    flex: 1;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-column {
    flex: 1;
}

.contact-column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.contact-column p {
    margin-bottom: 1rem;
    color: #555;
}

.info-block {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-block h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.about-hero {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.about-hero h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.about-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #27ae60;
}

.content-block p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.content-block ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-block li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-page {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #27ae60;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-list h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-detail {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-detail-image {
    width: 300px;
    height: 200px;
    background: #e8f5e9;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-detail p {
    margin-bottom: 1rem;
    color: #555;
}

.service-detail .price {
    padding: 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .split-container.reverse {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

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

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

    .service-detail-image {
        width: 100%;
    }
}