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

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

.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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: #7f8c8d;
    color: white;
}

.btn-reject:hover {
    background: #6c7a7b;
}

.main-nav {
    background: #ffffff;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d6a4f;
}

.nav-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-style: italic;
    margin: 0 auto 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #2d6a4f;
}

.hero-section {
    width: 100%;
    height: 75vh;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #52796f;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45,106,79,0.85) 0%, rgba(82,121,111,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.35rem;
    color: #ecf0f1;
    max-width: 750px;
    line-height: 1.6;
}

.intro-block {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.intro-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
}

.intro-block p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.offset-feature {
    padding: 6rem 2rem;
    background: #ffffff;
}

.feature-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.feature-text {
    flex: 1;
    padding-right: 2rem;
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
}

.feature-text p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #34495e;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    object-fit: cover;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

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

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d6a4f;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 310px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.card-content p {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1rem;
}

.select-service {
    width: 100%;
    padding: 0.8rem;
    background: #2d6a4f;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

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

.select-service.selected {
    background: #27ae60;
}

.expertise-section {
    padding: 0;
}

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #52796f;
}

.split-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.split-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2d6a4f;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d6a4f;
}

.form-section > .content-wrapper-narrow > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #7f8c8d;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    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: #2d6a4f;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.values-section {
    padding: 5rem 2rem;
    background: #2d6a4f;
    color: white;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ecf0f1;
}

.main-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #95a5a6;
}

.disclaimer {
    font-size: 0.85rem !important;
    color: #7f8c8d !important;
    font-style: italic;
    margin-top: 1rem !important;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
}

.thanks-container p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2d6a4f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #1b4332;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #2d6a4f;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.contact-detail p {
    color: #7f8c8d;
}

.about-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d6a4f 0%, #52796f 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content {
    padding: 4rem 2rem;
    background: white;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.about-section h2 {
    font-size: 2rem;
    color: #2d6a4f;
    margin-bottom: 1.2rem;
}

.about-section p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.services-list {
    padding: 4rem 2rem;
    background: white;
}

.services-list h1 {
    font-size: 3rem;
    color: #2d6a4f;
    text-align: center;
    margin-bottom: 3rem;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 3rem;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-detail h2 {
    font-size: 1.8rem;
    color: #2d6a4f;
    margin-bottom: 1rem;
}

.service-detail .price {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-detail p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    background: white;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: #2d6a4f;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-disclosure {
        margin: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

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

    .services-cards {
        flex-direction: column;
        align-items: center;
    }

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

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