/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem 4rem 6rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #3498db;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-2px);
}

.cta-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background: #2c3e50;
    color: #fff;
    transform: translateY(-2px);
}

/* Split Layout Pattern */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 6rem;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Challenge List */
.challenge-list {
    margin: 2rem 0;
}

.challenge-list li {
    font-size: 1.05rem;
    color: #555;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.challenge-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Approach Section */
.approach-section {
    background: #f8f9fa;
    padding: 5rem 6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.approach-card {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    padding: 5rem 6rem;
}

.services-intro {
    padding-right: 3rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #3498db;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
    color: #2980b9;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-preview-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.service-preview-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(10px);
}

.service-preview-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-preview-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

/* Why Us Section */
.why-us-section {
    background: #ecf0f1;
    padding: 5rem 6rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #666;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 6rem;
    background: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    border-top: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #999;
}

/* CTA Section with Form */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 6rem;
}

.cta-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.cta-content {
    flex: 1;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Final CTA */
.final-cta {
    background: #2c3e50;
    padding: 4rem 6rem;
    text-align: center;
}

.final-cta-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: #1a252f;
    color: #fff;
    padding: 4rem 6rem 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-column ul li a:hover {
    color: #3498db;
    padding-left: 5px;
}

.footer-disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 6rem;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 6rem;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #eee;
}

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

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.service-features {
    margin: 2rem 0;
}

.service-features li {
    font-size: 1rem;
    color: #666;
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.service-detail-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.service-pricing {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #27ae60;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    display: block;
    margin-bottom: 0.5rem;
}

.service-pricing .price-note {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Services CTA */
.services-cta {
    background: #ecf0f1;
    padding: 4rem 6rem;
}

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

.cta-box h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* About Page Sections */
.about-intro,
.philosophy-section,
.expertise-section,
.approach-detail-section {
    padding: 4rem 6rem;
}

.philosophy-section,
.approach-detail-section {
    background: #f8f9fa;
}

.values-section {
    padding: 4rem 6rem;
    background: #fff;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid #3498db;
}

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

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.expertise-list {
    margin: 1.5rem 0;
}

.expertise-list li {
    font-size: 1.1rem;
    color: #555;
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.expertise-list li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.cta-about {
    padding: 4rem 6rem;
    background: #ecf0f1;
}

/* Contact Page */
.contact-section {
    padding: 4rem 6rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.contact-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-section {
    padding: 4rem 6rem;
    background: #f8f9fa;
}

.map-section h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.map-section p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 6rem;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: #fff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.selected-service {
    margin: 2rem 0;
}

.service-confirmation {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #2c3e50;
    border-left: 4px solid #27ae60;
}

.next-steps {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.steps-list li {
    counter-increment: step-counter;
    font-size: 1.1rem;
    color: #555;
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    line-height: 1.6;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 2rem;
    height: 2rem;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #fff;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #fff;
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-content {
    padding: 3rem 6rem;
}

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

.legal-container h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-container h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.legal-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .ad-notice {
        margin-top: auto;
    }

    .hero-split,
    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .hero-split {
        min-height: auto;
    }

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

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

    .hero-visual {
        height: 50vh;
    }

    .split-layout,
    .split-layout.reverse {
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .approach-section,
    .services-overview,
    .why-us-section,
    .testimonials-section,
    .cta-section,
    .final-cta {
        padding: 3rem 2rem;
    }

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

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

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

    .main-footer {
        padding: 3rem 2rem 2rem;
    }

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

    .page-header {
        padding: 3rem 2rem;
    }

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

    .services-detailed {
        padding: 3rem 2rem;
    }

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

    .about-intro,
    .philosophy-section,
    .values-section,
    .expertise-section,
    .approach-detail-section,
    .cta-about {
        padding: 3rem 2rem;
    }

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

    .contact-section,
    .map-section {
        padding: 3rem 2rem;
    }

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

    .thanks-section {
        padding: 4rem 2rem;
    }

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

    .legal-content {
        padding: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2,
    .split-content h2 {
        font-size: 2rem;
    }

    .cta-primary,
    .cta-secondary,
    .cta-outline {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}