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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    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-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a472a;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.hero-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 60px;
}

.intro-left {
    flex: 0.9;
    background-color: #e8f1ed;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.intro-right {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.services-preview {
    background: #f8f9fa;
    padding: 80px 60px;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.section-header-centered p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #d6e4dd;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 22px;
    color: #1a472a;
    margin: 20px 20px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0 20px 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 16px;
}

.btn-select-service {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
    gap: 60px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 40px;
    font-weight: 700;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.trust-image {
    flex: 1;
    background-color: #e8f1ed;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cta-form-section {
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
    padding: 80px 60px;
    color: #fff;
}

.form-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    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: #27ae60;
}

.btn-submit {
    padding: 16px 36px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #27ae60;
    font-weight: 600;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

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

.footer-column p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.disclaimer {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}

.copyright {
    font-size: 13px;
    color: #888;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.8;
}

.selected-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
}

.selected-service strong {
    color: #1a472a;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .hero-left {
        padding: 40px 20px;
    }

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

    .intro-section {
        flex-direction: column;
        padding: 0 20px;
        margin: 40px auto;
    }

    .trust-section {
        flex-direction: column-reverse;
        padding: 0 20px;
        margin: 60px auto;
    }

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

    .services-preview {
        padding: 40px 20px;
    }

    .cta-form-section {
        padding: 40px 20px;
    }

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

    .footer-split {
        padding: 40px 20px 20px;
    }

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

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

.about-hero {
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
    color: #fff;
    padding: 100px 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.team-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-member-image {
    width: 100%;
    height: 300px;
    background-color: #e8f1ed;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 20px;
    color: #1a472a;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-member p {
    font-size: 14px;
    color: #5a6c7d;
}

.services-page-hero {
    background: linear-gradient(135deg, #1a472a 0%, #27ae60 100%);
    color: #fff;
    padding: 80px 60px;
    text-align: center;
}

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

.services-page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.services-detail-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 60px;
}

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

.contact-split {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: #1a472a;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.info-block h3 {
    font-size: 18px;
    color: #1a472a;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 60px;
}

.legal-page h1 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 24px;
    color: #1a472a;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 18px;
    color: #1a472a;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

.legal-page li {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 32px;
}