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

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

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

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

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

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

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

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

.btn-accept:hover {
    background-color: #1f4420;
}

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

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

.hero-text p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

.cta-primary:hover {
    background-color: #1f4420;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

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

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

.intro-image {
    flex: 1;
    background-color: #f1f3f4;
}

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

.intro-text {
    flex: 1;
}

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

.intro-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.section-header p {
    font-size: 1.15rem;
    color: #4a5568;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-image {
    background-color: #e8f5e9;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #2C5F2D;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.trust-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.citation {
    color: #2C5F2D;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.cta-section {
    padding: 4rem 2rem;
    background-color: #2C5F2D;
    color: #ffffff;
    text-align: center;
}

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

.cta-wrapper p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #7f8c8d;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #2c3e50;
}

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

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #dfe4ea;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2C5F2D;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f4420;
}

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

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

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

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

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

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

.footer-references {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 8px;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
}

.footer-references a {
    color: #4a9d4f;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.footer-disclaimer p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.page-hero {
    background: linear-gradient(135deg, #2C5F2D 0%, #1f4420 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #f1f3f4;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

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

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.principle-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.principle-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C5F2D;
}

.principle-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

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

.methodology-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.methodology-text {
    flex: 1;
}

.methodology-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.methodology-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.methodology-image {
    flex: 1;
    background-color: #f1f3f4;
}

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

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

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

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

.values-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: #2C5F2D;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

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

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

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2C5F2D;
}

.service-detail-image {
    flex: 1;
    background-color: #f1f3f4;
}

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

.services-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.1rem;
    color: #4a5568;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2C5F2D;
}

.info-block p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #2C5F2D;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: #1f4420;
}

.contact-map {
    flex: 1;
    background-color: #f1f3f4;
}

.contact-map img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.map-caption {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.map-caption p {
    font-size: 0.95rem;
    color: #4a5568;
}

.visit-info {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

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

.visit-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-expectations {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.contact-expectations h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.expectation-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.expectation-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C5F2D;
}

.expectation-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-confirmation {
    font-weight: 600;
    color: #2C5F2D;
}

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

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

.btn-primary:hover {
    background-color: #1f4420;
}

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

.btn-secondary:hover {
    background-color: #2C5F2D;
    color: #ffffff;
}

.next-steps {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.next-steps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-content h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2C5F2D;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

.step-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2C5F2D;
}

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

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a5568;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: #2C5F2D;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .intro-wrapper,
    .about-split,
    .methodology-wrapper,
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .service-detail-content {
        padding: 2rem;
    }

    .service-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .principle-item,
    .expectation-item {
        flex: 1 1 100%;
    }

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

    .step-item {
        flex: 1 1 100%;
    }
}