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

.navbar {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

.nav-menu a:hover {
    color: #6b8e7f;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background-color: #f9f8f6;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #6b8e7f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #5a7a6d;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.services-overview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.service-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b8e7f;
    margin-bottom: 1rem;
}

.btn-select {
    padding: 0.8rem 1.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1a1a1a;
}

.contact-form-section {
    padding: 5rem 2rem;
    background-color: #f9f8f6;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.form-right {
    flex: 1;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background-color: #5a7a6d;
}

.trust-section {
    display: flex;
    min-height: 450px;
}

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

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
}

.trust-image {
    flex: 1;
    overflow: hidden;
}

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

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.footer-section a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 1rem;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #6b8e7f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #5a7a6d;
}

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

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

.page-hero {
    background-color: #f9f8f6;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
}

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

.about-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    overflow: hidden;
}

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

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

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

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f9f8f6;
    border-left: 4px solid #6b8e7f;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1rem;
    color: #4a4a4a;
}

.approach-split {
    display: flex;
    min-height: 500px;
    background-color: #f9f8f6;
}

.approach-image {
    flex: 1;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-card {
    display: flex;
    margin-bottom: 3rem;
    min-height: 400px;
}

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

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

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f8f6;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b8e7f;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6b8e7f;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #6b8e7f;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #6b8e7f;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

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

.contact-info-section {
    padding: 3rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-info-block {
    flex: 1;
    padding: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.info-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-image-block {
    flex: 1;
    overflow: hidden;
}

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

.location-section {
    padding: 3rem 2rem;
    background-color: #f9f8f6;
}

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

.location-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.location-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #6b8e7f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #5a7a6d;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #6b8e7f;
    text-decoration: none;
    border: 2px solid #6b8e7f;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #6b8e7f;
    color: #ffffff;
}

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

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .trust-section,
    .about-split,
    .approach-split,
    .service-detail-card,
    .contact-grid,
    .form-container {
        flex-direction: column;
    }

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

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

    .nav-menu {
        gap: 1rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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