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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.ad-notice {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-links a:hover {
    opacity: 0.8;
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f8f8;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.hero-right {
    flex: 1;
    background-color: #ddd;
}

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

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

.cta-button:hover {
    background-color: #1e4620;
}

.info-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.info-left {
    flex: 1;
    background-color: #e8e8e8;
}

.info-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.info-right h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.info-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.services-overview {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 20px;
    color: #666;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 24px 20px;
}

.select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1e4620;
}

.process-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f8f8;
}

.process-left {
    flex: 1;
    padding: 60px 60px;
}

.process-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    min-width: 50px;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.process-right {
    flex: 1;
    background-color: #ddd;
}

.process-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-section {
    padding: 80px 24px;
    background-color: #2c5f2d;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.cta-text p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #000;
}

.trust-indicators {
    padding: 60px 24px;
    background-color: #1a1a1a;
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #2c5f2d;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #666;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.page-hero {
    padding: 120px 24px 60px;
    background-color: #1a1a1a;
    text-align: center;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex: 1;
    background-color: #e8e8e8;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

.service-detail-right h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-right p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

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

.service-cta {
    padding: 80px 24px;
    background-color: #f8f8f8;
    text-align: center;
}

.service-cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

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

.about-left {
    flex: 1.2;
}

.about-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.about-right {
    flex: 1;
    background-color: #e8e8e8;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.team-section {
    padding: 80px 24px;
    background-color: #f8f8f8;
}

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

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.member-role {
    font-size: 16px;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 16px;
}

.member-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

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

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

.values-left {
    flex: 1;
    background-color: #e8e8e8;
}

.values-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.values-right {
    flex: 1;
}

.values-right h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 28px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.experience-numbers {
    padding: 80px 24px;
    background-color: #1a1a1a;
}

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

.number-item {
    text-align: center;
    flex: 1;
}

.number-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.number-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.certifications {
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.cert-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.cert-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #555;
}

.cert-list {
    list-style: none;
}

.cert-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.cert-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-size: 20px;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info-block {
    margin-bottom: 32px;
}

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

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.email-text {
    color: #2c5f2d;
    font-weight: 600;
}

.contact-right {
    flex: 1;
    background-color: #e8e8e8;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.service-area {
    padding: 80px 24px;
    background-color: #f8f8f8;
}

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

.area-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    text-align: center;
}

.area-content > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
    text-align: center;
}

.cities-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 32px;
}

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

.city-column ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    color: #555;
}

.city-column ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
}

.area-note {
    text-align: center;
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.contact-cta {
    padding: 80px 24px;
    background-color: #2c5f2d;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.cta-box p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.thanks-section {
    padding: 120px 24px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f2d;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #555;
}

.service-confirmation {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.service-confirmation p {
    font-size: 16px;
    color: #333;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
    background-color: #f8f8f8;
    padding: 32px;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #555;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

.secondary-button:hover {
    background-color: #555;
}

.legal-content {
    padding: 80px 24px;
    background-color: #fff;
}

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

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

.legal-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #999;
}

.text-link {
    color: #2c5f2d;
}

@media (max-width: 768px) {
    .hero-split,
    .info-split,
    .process-split,
    .service-detail-item,
    .about-split,
    .values-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .info-right,
    .process-left,
    .service-detail-right,
    .about-left,
    .values-right,
    .contact-left {
        padding: 40px 24px;
    }

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

    .cta-container {
        flex-direction: column;
        gap: 40px;
    }

    .trust-grid,
    .numbers-container,
    .team-grid,
    .cities-grid {
        flex-direction: column;
        gap: 24px;
    }

    .nav-links {
        gap: 16px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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