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

:root {
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #52b788;
    --accent-color: #95d5b2;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-gray: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-cream: #fefef8;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    background-color: var(--bg-cream);
    padding: 80px 30px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-section {
    background-color: var(--bg-white);
    padding: 100px 30px;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.values-section {
    background-color: var(--bg-light);
    padding: 100px 30px;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    overflow: hidden;
}

.value-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: var(--bg-light);
}

.value-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 25px 25px;
    line-height: 1.6;
}

.services-preview-section {
    background-color: var(--bg-cream);
    padding: 100px 30px;
}

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

.services-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.services-lead {
    font-size: 19px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
}

.service-block {
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--bg-white);
}

.service-block.reverse {
    background-color: var(--bg-light);
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.services-content .cta-secondary {
    display: block;
    text-align: center;
    margin-top: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.approach-section {
    background-color: var(--primary-dark);
    padding: 100px 30px;
    color: var(--bg-white);
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.approach-steps {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial-section {
    background-color: var(--bg-white);
    padding: 100px 30px;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

blockquote {
    font-size: 24px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    background-color: var(--bg-light);
}

cite {
    display: block;
    margin-top: 25px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-gray);
}

.form-section {
    background-color: var(--bg-cream);
    padding: 100px 30px;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.form-intro {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 45px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 45px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
}

.disclaimer-section {
    background-color: var(--bg-light);
    padding: 60px 30px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 30px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 30px;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: var(--primary-light);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-header {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 80px 30px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro-section {
    background-color: var(--bg-white);
    padding: 100px 30px;
}

.about-intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 0.8;
    background-color: var(--bg-light);
}

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

.expertise-section {
    background-color: var(--bg-light);
    padding: 100px 30px;
}

.expertise-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.expertise-item {
    flex: 1;
    min-width: 280px;
}

.expertise-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.expertise-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    background-color: var(--bg-white);
    padding: 100px 30px;
}

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

.team-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.team-lead {
    font-size: 19px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
}

.team-description p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.mission-section {
    background-color: var(--bg-cream);
    padding: 0;
    position: relative;
}

.mission-wrapper {
    position: relative;
    max-width: 100%;
}

.mission-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    background-color: var(--bg-light);
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(29, 67, 50, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
}

.mission-overlay h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 25px;
    text-align: center;
}

.mission-overlay p {
    font-size: 20px;
    color: var(--bg-white);
    max-width: 800px;
    text-align: center;
    line-height: 1.7;
}

.values-detail-section {
    background-color: var(--bg-white);
    padding: 100px 30px;
}

.values-detail-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-detail-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-detail {
    flex: 1;
    min-width: 280px;
}

.value-detail h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.value-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.impact-section {
    background-color: var(--primary-color);
    padding: 80px 30px;
    color: var(--bg-white);
}

.impact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.impact-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.impact-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.impact-note {
    font-size: 14px;
    opacity: 0.8;
}

.cta-about-section {
    background-color: var(--bg-light);
    padding: 80px 30px;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-about-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.services-intro {
    background-color: var(--bg-white);
    padding: 60px 30px;
}

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

.services-intro-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.services-detailed {
    background-color: var(--bg-light);
    padding: 60px 30px 100px;
}

.service-detailed-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    background-color: var(--bg-white);
    padding: 50px;
    align-items: flex-start;
}

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

.service-detailed-image {
    flex: 0.8;
    background-color: var(--bg-light);
}

.service-detailed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.service-detailed-content {
    flex: 1.2;
}

.service-detailed-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.service-detailed-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-includes {
    margin: 35px 0;
    padding: 25px;
    background-color: var(--bg-light);
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-includes ul {
    list-style-position: inside;
    color: var(--text-light);
}

.service-includes li {
    margin-bottom: 8px;
    font-size: 15px;
}

.service-pricing {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-pricing .price-note {
    font-size: 14px;
    color: var(--text-gray);
}

.additional-services {
    background-color: var(--bg-cream);
    padding: 80px 30px;
}

.additional-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.additional-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.additional-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-cta-section {
    background-color: var(--primary-dark);
    padding: 80px 30px;
    text-align: center;
    color: var(--bg-white);
}

.services-cta-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.services-cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.contact-main-section {
    background-color: var(--bg-white);
    padding: 80px 30px;
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-block > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 25px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-visual-section {
    background-color: var(--bg-light);
    padding: 0;
}

.contact-image-wrapper {
    max-width: 100%;
}

.contact-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    background-color: var(--bg-light);
}

.approach-contact-section {
    background-color: var(--bg-cream);
    padding: 100px 30px;
}

.approach-contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-contact-content h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    background-color: var(--bg-white);
    padding: 100px 30px;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-service-info {
    background-color: var(--bg-light);
    padding: 25px;
    margin-bottom: 50px;
    display: none;
}

.thanks-service-info.show {
    display: block;
}

.thanks-service-info p {
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-details {
    background-color: var(--bg-cream);
    padding: 50px 40px;
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.next-step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-text {
    flex: 1;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.thanks-contact-note {
    padding: 25px;
    background-color: var(--bg-light);
}

.thanks-contact-note p {
    font-size: 15px;
    color: var(--text-gray);
}

.legal-page {
    background-color: var(--bg-white);
    padding: 60px 30px 100px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-updated {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 18px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--primary-dark);
}

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

    .hero-content h1 {
        font-size: 36px;
    }

    .intro-wrapper {
        flex-direction: column;
        gap: 50px;
    }

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

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

    .about-intro-wrapper {
        flex-direction: column;
        gap: 50px;
    }

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

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

    .impact-stats {
        flex-direction: column;
        gap: 40px;
    }

    .service-detailed-card {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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