/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2D5016;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a7928;
}

ul {
    list-style: none;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5016;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a1a;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #a8d08d;
    text-decoration: underline;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-service,
.btn-submit {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2D5016;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #4a7928;
    color: #ffffff;
}

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

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

.btn-primary-large {
    background-color: #2D5016;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background-color: #4a7928;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-service {
    background-color: #2D5016;
    color: #ffffff;
    width: 100%;
    margin-top: 1rem;
}

.btn-service:hover {
    background-color: #4a7928;
}

.btn-submit {
    background-color: #2D5016;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
}

.btn-submit:hover {
    background-color: #4a7928;
}

/* Container Variations - STACKED SECTIONS FLOW */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.container-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Blocks - Alternating Backgrounds */
section {
    padding: 5rem 0;
}

.hero-block {
    background: linear-gradient(135deg, #f8faf7 0%, #e8f0e3 100%);
    padding: 6rem 0;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 0 2rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.cta-hero {
    display: inline-block;
    background-color: #2D5016;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #4a7928;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.hero-visual {
    flex: 1;
    padding: 0 2rem;
}

.hero-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Trust Section */
.trust-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

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

/* Value Block - Alternating Layout */
.value-block {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.value-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item.reverse {
    flex-direction: row-reverse;
}

.value-icon {
    flex: 1;
}

.value-icon img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-text {
    flex: 1;
}

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

.value-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Services Overview */
.services-overview {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

.section-intro {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 1rem;
}

/* Testimonial Block */
.testimonial-block {
    background: linear-gradient(135deg, #2D5016 0%, #4a7928 100%);
    padding: 4rem 0;
}

.testimonial-block blockquote {
    border-left: none;
    padding: 0;
}

.testimonial-block p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-size: 1rem;
    color: #a8d08d;
    font-style: normal;
}

/* Approach Section */
.approach-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.link-inline {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

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

/* Form Section */
.form-section {
    background-color: #f8faf7;
    padding: 5rem 0;
}

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

.form-section > p {
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
}

/* Final Trust */
.final-trust {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

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

.trust-reasons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #2D5016;
    border-radius: 4px;
}

.trust-item strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.trust-item p {
    color: #4a4a4a;
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8faf7 0%, #e8f0e3 100%);
    padding: 4rem 0;
}

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

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Story Section */
.story-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.story-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

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

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

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2D5016;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Team Section */
.team-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

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

.team-section > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2D5016;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #4a4a4a;
    margin-top: 0.5rem;
}

/* Approach Detail */
.approach-detail {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

.approach-visual {
    flex: 1;
}

.approach-visual img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Industries Section */
.industries-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

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

.industries-section p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

.industries-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 1.05rem;
    color: #1a1a1a;
}

.industries-list li:last-child {
    border-bottom: none;
}

.industries-list strong {
    color: #2D5016;
}

/* Services Detail */
.services-detail {
    background-color: #ffffff;
    padding: 3rem 0;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 2px solid #f0f0f0;
}

.service-detail-card:last-child {
    border-bottom: none;
}

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

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

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

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2D5016;
}

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

.service-detail-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0 1.5rem 0;
    padding: 1.5rem;
    background-color: #f8faf7;
    border-radius: 6px;
}

.price-label {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 600;
}

.price-value {
    font-size: 2rem;
    color: #2D5016;
    font-weight: 800;
}

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

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

.process-section > p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

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

.process-step p {
    font-size: 1rem;
    color: #4a4a4a;
}

/* Contact Content */
.contact-content {
    background-color: #ffffff;
    padding: 4rem 0;
}

.contact-info {
    flex: 1;
}

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

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

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

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

.contact-block a {
    color: #2D5016;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.quick-contact {
    background-color: #f8faf7;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.quick-contact p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2D5016;
}

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

/* Thanks Section */
.thanks-section {
    background: linear-gradient(135deg, #f8faf7 0%, #e8f0e3 100%);
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-icon svg {
    margin: 0 auto;
}

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

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

.thanks-info {
    margin: 2rem 0;
}

.service-selected {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2D5016;
    text-align: left;
    display: inline-block;
    font-size: 1.05rem;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-step {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #2D5016;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.next-step p {
    margin: 0;
    font-size: 1rem;
    color: #4a4a4a;
}

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

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #d5d5d5;
}

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

.email-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D5016;
}

/* Legal Content */
.legal-content {
    background-color: #ffffff;
    padding: 4rem 0;
    min-height: 60vh;
}

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

.last-updated {
    font-size: 0.9rem;
    color: #7a7a7a;
    margin-bottom: 2rem;
}

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

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

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

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: #f9f9f9;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e5e5;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

.back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem 0;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #ffffff;
}

.footer-col p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-block {
        flex-direction: column;
        padding: 3rem 0;
        gap: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .container-split {
        flex-direction: column;
        gap: 2rem;
    }

    .value-item,
    .value-item.reverse {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .team-stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        flex: 1;
    }

    section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 2rem;
    }

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

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
