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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 9999;
}

.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: 250px;
}

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

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

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

.btn-accept {
    background: #4a9d5f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3d8450;
}

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

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #4a9d5f;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f8f7f5;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #555;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #2c2c2c;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #4a9d5f;
    transform: translateY(-2px);
}

.services-showcase {
    padding: 100px 0;
}

.section-intro-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-right {
    flex: 1;
    display: flex;
    align-items: center;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

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

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.btn-select-service {
    background: #4a9d5f;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #3d8450;
    transform: translateX(4px);
}

.form-section-split {
    display: flex;
    background: #f8f7f5;
}

.form-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.form-right {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.contact-form {
    max-width: 500px;
}

.selected-service-notice {
    background: #e8f5e9;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #2c5f2d;
    display: none;
}

.selected-service-notice.active {
    display: block;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #4a9d5f;
}

.trust-split {
    display: flex;
    min-height: 500px;
}

.trust-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.trust-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.link-inline {
    color: #2c2c2c;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #4a9d5f;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: #4a9d5f;
}

.trust-content-right {
    flex: 1;
}

.trust-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.site-footer {
    background: #2c2c2c;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4a9d5f;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.8;
    color: #bbb;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #888;
}

.page-header {
    background: #f8f7f5;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #555;
}

.page-content {
    padding: 80px 0;
}

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

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 24px;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 36px 0 16px;
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 30px;
}

.content-wrapper li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #444;
}

.about-split {
    display: flex;
    gap: 60px;
    margin: 60px 0;
}

.about-split-text {
    flex: 1;
}

.about-split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #e2ddd8;
    border-radius: 4px;
}

.about-split-image img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

.contact-info-split {
    display: flex;
    gap: 60px;
    margin: 60px 0;
}

.contact-info-left {
    flex: 1;
}

.contact-info-right {
    flex: 1;
}

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

.info-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.services-list-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.service-item-split {
    display: flex;
    gap: 60px;
    padding: 40px;
    background: #f8f7f5;
    border-radius: 4px;
}

.service-item-content {
    flex: 2;
}

.service-item-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-item-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.service-item-price {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.price-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #2c2c2c;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #4a9d5f;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 32px;
}

.thanks-service {
    background: #f8f7f5;
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.thanks-service strong {
    color: #2c2c2c;
}

@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-split,
    .form-section-split,
    .trust-split {
        flex-direction: column;
    }

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

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

    .section-intro-split,
    .about-split,
    .contact-info-split,
    .service-item-split {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-content {
        padding: 40px;
    }

    .hero-left,
    .form-left,
    .form-right,
    .trust-content-left {
        padding: 60px 40px;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .service-content {
        padding: 30px;
    }

    .hero-left,
    .form-left,
    .form-right,
    .trust-content-left {
        padding: 40px 20px;
    }
}
