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

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    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;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-accept:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

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

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

.hero-right {
    flex: 1;
    background: var(--primary-color);
}

.hero-right img {
    width: 100%;
    height: 100%;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover,
.cta-secondary:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.intro-section {
    padding: 100px 40px;
    background: white;
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background: var(--bg-light);
}

.intro-image img {
    width: 100%;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.services-showcase {
    padding: 100px 40px;
    background: var(--bg-light);
}

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 240px;
    background: var(--bg-light);
}

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

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 25px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    flex-grow: 1;
}

.service-price {
    padding: 20px 25px 10px;
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn-service {
    margin: 20px 25px 25px;
    padding: 14px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #145a37;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 40px;
    background: white;
}

.trust-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.citation {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.trust-image {
    flex: 1;
    background: var(--bg-light);
}

.trust-image img {
    width: 100%;
}

.cta-section {
    padding: 100px 40px;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-secondary {
    background: white;
    color: var(--primary-color);
}

.cta-secondary:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.form-section {
    padding: 100px 40px;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-container > p {
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 40px;
    background: #f0f8ff;
    border-top: 3px solid var(--primary-color);
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
}

.footer-main {
    background: var(--text-dark);
    color: white;
    padding: 60px 40px 20px;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-references h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
}

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

.footer-references a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #bdc3c7;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 80px 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.content-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.content-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-page li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
}

.contact-grid {
    display: flex;
    gap: 80px;
    margin-top: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    background: var(--bg-light);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 40px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .services-showcase h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .intro-text h2,
    .trust-content h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 40px 30px;
    }

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