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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

a:hover {
    color: #1a5759;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 1rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.8rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c7a7b;
}

.editorial-content {
    padding-top: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-editorial {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1.5rem 2rem;
}

.hero-text-center {
    text-align: center;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.hero-text-center h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.content-narrow {
    max-width: 680px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.content-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 2rem;
}

.content-image-inline {
    margin: 3rem 0;
    border-radius: 6px;
    overflow: hidden;
}

.content-image-inline img {
    width: 100%;
}

.inline-cta-box {
    background-color: #f7fafc;
    border-left: 4px solid #2c7a7b;
    padding: 2rem 1.5rem;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
}

.inline-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
}

.btn-inline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #2c7a7b;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background-color: #1a5759;
    transform: translateY(-2px);
}

.testimonial-block {
    background-color: #edf2f7;
    padding: 2.5rem 2rem;
    margin: 3rem auto;
    max-width: 850px;
    border-radius: 6px;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial-block footer {
    font-size: 0.95rem;
    color: #4a5568;
    font-style: normal;
    font-weight: 600;
}

.services-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.service-card-editorial {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
    font-weight: 700;
}

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

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c7a7b;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: #2c7a7b;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-section-editorial {
    background-color: #1a202c;
    color: #ffffff;
    padding: 4rem 1.5rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-section-editorial h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section-editorial p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-large:hover {
    background-color: #1a5759;
    transform: translateY(-2px);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
    font-weight: 600;
}

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

.form-section {
    background-color: #f7fafc;
    padding: 4rem 1.5rem;
    margin: 4rem 0 0;
}

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

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

.form-container-editorial > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    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: #2c7a7b;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c7a7b;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a5759;
    transform: translateY(-2px);
}

.final-section {
    margin-bottom: 4rem;
}

.closing-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #2d3748;
    text-align: center;
    line-height: 1.8;
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
}

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

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

.footer-column ul li a {
    color: #cbd5e0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #cbd5e0;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #2c7a7b;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(44, 122, 123, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #1a5759;
    transform: scale(1.05);
}

.page-header {
    text-align: center;
    padding: 3rem 1.5rem 2rem;
    background-color: #f7fafc;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 800;
}

.header-subtitle {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 3rem 0;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-detail-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a7b;
    font-weight: 700;
}

.btn-service-detail {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c7a7b;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service-detail:hover {
    background-color: #1a5759;
    transform: translateY(-2px);
}

.pricing-info-section {
    background-color: #edf2f7;
    padding: 3rem 1.5rem;
    margin: 3rem 0;
}

.cta-section-services {
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 4rem 1.5rem;
    text-align: center;
    margin: 4rem 0 0;
}

.cta-section-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-section {
    background-color: #edf2f7;
    padding: 3rem 1.5rem;
    margin: 3rem 0;
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    background-color: #ffffff;
    padding: 1.8rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

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

.team-values p {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #2c7a7b;
}

.numbers-section {
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 3rem 1.5rem;
    margin: 3rem 0;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e0;
}

.cta-section-about {
    background-color: #1a202c;
    color: #ffffff;
    padding: 4rem 1.5rem;
    text-align: center;
    margin: 4rem 0 0;
}

.cta-section-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-content-section {
    padding: 2rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

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

.contact-map-placeholder {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
}

.map-box {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.map-info {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.directions-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.directions-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0.8rem;
}

.additional-info {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.info-box {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2c7a7b;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

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

.contact-cta-section {
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 4rem 1.5rem;
    text-align: center;
    margin: 4rem 0 0;
}

.contact-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.thanks-details {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.1rem;
    color: #2c7a7b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a202c;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #2c7a7b;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.steps-list li strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.steps-list li p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
}

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

.btn-primary {
    padding: 0.9rem 2rem;
    background-color: #2c7a7b;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #2c7a7b;
    border: 2px solid #2c7a7b;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.additional-info {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.additional-info p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.legal-content {
    padding-top: 5rem;
    background-color: #f7fafc;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

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

.last-updated {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3748;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
    margin-top: 1.5rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: #4a5568;
    margin-top: 1rem;
}

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

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.cookie-table {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.cookie-table h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.cookie-table ul {
    list-style: none;
    margin-left: 0;
}

.cookie-table ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table ul li:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .hero-text-center h1 {
        font-size: 3.5rem;
    }

    .service-card-editorial {
        flex-direction: row;
    }

    .service-card-editorial:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-image {
        flex: 0 0 40%;
    }

    .service-content {
        flex: 1;
    }

    .service-detail-block {
        flex-direction: row;
        gap: 3rem;
    }

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

    .service-detail-image {
        flex: 0 0 45%;
    }

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

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-info-grid {
        flex-direction: row;
    }

    .contact-info-block,
    .contact-map-placeholder {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .thanks-container h1 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .service-image img {
        height: 100%;
        object-fit: cover;
    }
}