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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.75rem;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d7a3e;
    text-decoration: none;
}

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

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

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

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

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

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: #1a252f;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-visual {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #245d31;
    transform: translateY(-2px);
}

.intro-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.intro-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 25px;
}

.intro-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.services-preview {
    padding: 90px 20px;
    background-color: #f5f7fa;
}

.services-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a252f;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    color: #1a252f;
    margin: 25px 25px 15px;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d7a3e;
    margin: 0 25px 20px;
}

.select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px 20px;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

.select-service:hover {
    background-color: #245d31;
}

.approach-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.approach-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 25px;
}

.approach-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.form-section {
    padding: 90px 20px;
    background-color: #f5f7fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #1a252f;
    margin-bottom: 15px;
}

.form-container > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a3e;
}

.form-group input[readonly] {
    background-color: #f5f7fa;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.main-footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #b8c5d0;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background-color: #2d7a3e;
    color: #ffffff;
}

.cookie-btn.reject {
    background-color: #5a6c7d;
    color: #ffffff;
}

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

.page-hero {
    background-color: #f5f7fa;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #1a252f;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

.about-intro {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

.about-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 90px 20px;
    background-color: #f5f7fa;
}

.philosophy-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 25px;
}

.philosophy-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.expertise-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.expertise-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #1a252f;
    margin-bottom: 60px;
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.expertise-item {
    flex: 1 1 calc(50% - 18px);
    background-color: #f5f7fa;
    padding: 35px;
    border-radius: 8px;
    min-width: 280px;
}

.expertise-item h3 {
    font-size: 1.5rem;
    color: #1a252f;
    margin-bottom: 15px;
}

.expertise-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.values-section {
    padding: 90px 20px;
    background-color: #f5f7fa;
}

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

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    color: #1a252f;
    margin-bottom: 15px;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 20px;
    background-color: #2d7a3e;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.cta-section .cta-button {
    background-color: #ffffff;
    color: #2d7a3e;
}

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

.services-detailed {
    padding: 60px 20px;
    background-color: #ffffff;
}

.service-detail {
    padding: 60px 0;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

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

.service-detail-text h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 25px;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #e8ecef;
    border-bottom: 2px solid #e8ecef;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 5px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2d7a3e;
}

.service-detail-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
    height: 400px;
}

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

.contact-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #1a252f;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-item .no-link {
    color: #5a6c7d;
}

.contact-visual {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.location-section {
    padding: 90px 20px;
    background-color: #f5f7fa;
}

.location-section h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #1a252f;
    margin-bottom: 25px;
}

.location-section > p {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.location-details {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.location-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
}

.location-item h3 {
    font-size: 1.4rem;
    color: #1a252f;
    margin-bottom: 15px;
}

.location-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.meeting-section {
    padding: 90px 20px;
    background-color: #ffffff;
    text-align: center;
}

.meeting-section h2 {
    font-size: 2.2rem;
    color: #1a252f;
    margin-bottom: 25px;
}

.meeting-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.05rem;
    color: #5a6c7d;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f5f7fa;
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #2d7a3e;
    font-weight: 600;
    margin-bottom: 30px;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 15px;
}

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

.secondary-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #5a6c7d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

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

.next-steps-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.next-steps-section h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #1a252f;
    margin-bottom: 60px;
}

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

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

.step-item h3 {
    font-size: 1.4rem;
    color: #1a252f;
    margin-bottom: 15px;
}

.step-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 30px;
}

.legal-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #1a252f;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #1a252f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: #2d7a3e;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e8ecef;
    font-style: italic;
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero-split,
    .intro-split,
    .approach-split,
    .philosophy-split,
    .about-split,
    .service-detail-content,
    .contact-container,
    .location-details,
    .steps-grid,
    .values-container {
        flex-direction: column;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        gap: 25px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

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

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