* {
    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-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

.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: #1a5f3f;
    text-decoration: none;
}

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

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

.nav-menu a:hover {
    color: #1a5f3f;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a5f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 35px;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    background: #2c3e50;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #1a5f3f;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #145030;
}

.info-strip {
    background: #1a5f3f;
    padding: 50px 40px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-card {
    text-align: center;
    color: #ffffff;
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    opacity: 0.9;
}

.approach-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    color: #1a5f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 40px;
    background: #f5f7fa;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #1a5f3f;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 0 0 calc(50% - 15px);
    max-width: 340px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8eef3;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    padding: 0 25px 15px;
    font-size: 16px;
    color: #4a5568;
}

.service-card .price {
    padding: 0 25px 20px;
    font-size: 20px;
    color: #1a5f3f;
    font-weight: 700;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background: #1a5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #145030;
}

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.container-narrow h2 {
    font-size: 38px;
    color: #1a5f3f;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    background: #f5f7fa;
    padding: 45px;
    border-radius: 12px;
}

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

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

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
}

.form-field input[readonly] {
    background: #e8eef3;
    color: #2c3e50;
    cursor: not-allowed;
}

.form-field textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #145030;
}

.trust-section {
    padding: 80px 40px;
    background: #e8eef3;
    text-align: center;
}

.trust-section h2 {
    font-size: 36px;
    color: #1a5f3f;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-section p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

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

.footer-column ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #1a5f3f;
    color: #ffffff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.about-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    color: #1a5f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 40px;
    background: #ffffff;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-container h2 {
    font-size: 36px;
    color: #1a5f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.content-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-detail {
    padding: 100px 40px;
    background: #f5f7fa;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-card h3 {
    font-size: 28px;
    color: #1a5f3f;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-card p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-detail-card .price {
    font-size: 24px;
    color: #1a5f3f;
    font-weight: 700;
    margin-top: 20px;
    display: block;
}

.contact-info {
    padding: 80px 40px;
    background: #ffffff;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h3 {
    font-size: 24px;
    color: #1a5f3f;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-block p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    color: #1a5f3f;
    margin-bottom: 30px;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #1a5f3f;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 38px;
    background: #1a5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #145030;
}

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

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

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

    .service-card {
        max-width: 100%;
    }

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

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