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

:root {
    --primary-color: #2d7a3f;
    --secondary-color: #1a5229;
    --accent-color: #4a9d5f;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-accent: #e8f5ea;
    --border-color: #e0e0e0;
    --error-color: #c83232;
}

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background: 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: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--secondary-color);
}

.info-block-alt {
    background: var(--bg-light);
    padding: 70px 20px;
}

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

.info-block-alt h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.mission-statement {
    background: var(--primary-color);
    padding: 90px 20px;
    text-align: center;
    color: white;
}

.centered-text {
    max-width: 800px;
    margin: 0 auto;
}

.mission-statement h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-statement p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.inline-cta {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s;
}

.inline-cta:hover {
    opacity: 0.8;
}

.visual-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.text-side {
    flex: 1;
}

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

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

.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-preview {
    background: var(--bg-accent);
    padding: 80px 20px;
}

.services-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
}

.cta-center {
    text-align: center;
}

.secondary-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.trust-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

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

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

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

.trust-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-light);
}

.process-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

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

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.step {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

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

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

.step p {
    font-size: 16px;
    color: var(--text-light);
}

.testimonial-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

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

blockquote {
    flex: 1;
    background: var(--bg-accent);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

blockquote p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.form-section {
    background: var(--bg-light);
    padding: 80px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.form-container > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--secondary-color);
}

.info-footer-section {
    background: var(--bg-white);
    padding: 60px 20px;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fffbf0;
    border: 1px solid #f0e4c4;
    padding: 30px;
    border-radius: 6px;
}

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

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

.main-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 50px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: white;
    padding: 20px;
    display: none;
    z-index: 1000;
    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;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-btn.accept:hover {
    background: var(--secondary-color);
}

.cookie-btn.reject {
    background: #555555;
    color: white;
}

.cookie-btn.reject:hover {
    background: #666666;
}

.page-header {
    background: var(--bg-accent);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.pricing-section {
    background: var(--bg-light);
    padding: 60px 20px;
}

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

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.pricing-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-light);
}

.features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}

.service-cta {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: var(--secondary-color);
}

.additional-info {
    background: var(--bg-white);
    padding: 70px 20px;
}

.additional-info h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.info-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    flex: 1 1 calc(50% - 15px);
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 16px;
    color: var(--text-light);
}

.faq-section {
    background: var(--bg-accent);
    padding: 70px 20px;
}

.faq-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.faq-item {
    flex: 1 1 calc(50% - 13px);
    background: white;
    padding: 25px;
    border-radius: 6px;
}

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

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-section {
    background: var(--bg-white);
    padding: 70px 20px;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-accent);
    padding: 50px;
    border-radius: 8px;
}

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

.cta-box p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.large-cta:hover {
    background: var(--secondary-color);
}

.about-intro {
    background: var(--bg-white);
    padding: 70px 20px;
}

.about-intro .content-wrapper {
    max-width: 1200px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.mission-vision {
    background: var(--bg-light);
    padding: 70px 20px;
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-block,
.vision-block {
    flex: 1;
}

.mission-block h2,
.vision-block h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mission-block p,
.vision-block p {
    font-size: 17px;
    color: var(--text-light);
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.values-list li:before {
    content: "• ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}

.team-section {
    background: var(--bg-white);
    padding: 70px 20px;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: var(--text-light);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.team-member {
    flex: 1;
    background: var(--bg-accent);
    padding: 35px;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
}

.expertise-section {
    background: var(--bg-light);
    padding: 70px 20px;
}

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

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

.expertise-item {
    flex: 1 1 calc(50% - 15px);
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.testimonials-about {
    background: var(--bg-white);
    padding: 70px 20px;
}

.testimonials-about h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.testimonial-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: var(--bg-accent);
    padding: 30px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

.cta-about {
    background: var(--bg-light);
    padding: 70px 20px;
}

.contact-main {
    background: var(--bg-white);
    padding: 70px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.contact-note {
    background: var(--bg-accent);
    padding: 25px;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.map-placeholder {
    flex: 1;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 20px;
    border-radius: 0 0 8px 8px;
}

.map-overlay p {
    font-size: 14px;
    line-height: 1.6;
}

.faq-contact {
    background: var(--bg-light);
    padding: 70px 20px;
}

.faq-contact h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-contact .faq-item {
    flex: none;
    background: white;
    padding: 25px;
    border-radius: 6px;
}

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

.faq-contact .faq-item p {
    font-size: 15px;
    color: var(--text-light);
}

.cta-contact {
    background: var(--bg-white);
    padding: 70px 20px;
}

.thanks-section {
    background: var(--bg-white);
    padding: 80px 20px;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.selected-service {
    background: var(--bg-accent);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

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

.next-steps {
    margin-bottom: 40px;
}

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

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

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

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

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

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

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

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.helpful-links {
    background: var(--bg-light);
    padding: 70px 20px;
}

.helpful-links h2 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-dark);
}

.helpful-links > .content-wrapper > p {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.link-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.link-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.link-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.link-card p {
    font-size: 15px;
    color: var(--text-light);
}

.legal-content {
    background: var(--bg-white);
    padding: 60px 20px;
}

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

.legal-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--text-dark);
}

.legal-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 15px;
    color: var(--text-dark);
}

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

.legal-block ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-block ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

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

    .services-grid,
    .pricing-grid,
    .process-steps,
    .testimonial-wrapper,
    .team-grid,
    .steps-grid,
    .link-cards {
        flex-direction: column;
    }

    .service-card,
    .pricing-card,
    .info-item,
    .faq-item,
    .expertise-item {
        flex: 1 1 100%;
    }

    .mission-vision,
    .footer-content,
    .contact-layout,
    .about-intro .content-wrapper {
        flex-direction: column;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    .form-container {
        padding: 30px 20px;
    }
}
