/* 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.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #2980b9;
}

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

.btn-cookie-alt:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Navigation */
.nav-main {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

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

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
}

.hero-left {
    background: #f8f9fa;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    color: #5a6c7d;
}

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

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

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

.intro-left,
.intro-right {
    flex: 1;
    display: flex;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    padding: 60px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    max-width: 540px;
}

/* Trust Block */
.trust-block {
    background: #34495e;
    color: #ffffff;
    padding: 80px 24px;
}

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

.trust-block h2 {
    font-size: 34px;
    margin-bottom: 24px;
}

.trust-block p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    padding: 80px 24px;
    background: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 400px;
    background: #ffffff;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-card-image,
.service-card-content {
    flex: 1;
    display: flex;
}

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

.service-card-content {
    padding: 48px;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-card-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-select-service,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.btn-select-service {
    background: #27ae60;
    color: #ffffff;
    width: 100%;
    margin-top: 16px;
}

.btn-select-service:hover {
    background: #229954;
}

.btn-submit {
    background: #3498db;
    color: #ffffff;
    width: 100%;
    font-size: 18px;
    padding: 16px;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #2980b9;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 24px;
    background: #ffffff;
}

.testimonial {
    margin-bottom: 48px;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c3e50;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

/* Process Split */
.process-split {
    display: flex;
    align-items: stretch;
    min-height: 700px;
}

.process-left,
.process-right {
    flex: 1;
    display: flex;
}

.process-left {
    padding: 60px;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.process-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.process-step p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.process-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    padding: 80px 24px;
    background: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #3498db;
}

.cta-section .btn-primary:hover {
    background: #ecf0f1;
}

/* Form Section */
.form-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #5a6c7d;
}

.contact-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    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: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.sticky-cta-btn {
    padding: 16px 32px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(39,174,96,0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39,174,96,0.5);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

/* Page Hero */
.page-hero {
    padding: 80px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* About Split */
.about-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.about-left,
.about-right {
    flex: 1;
    display: flex;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    padding: 60px;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.about-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 24px;
    background: #ffffff;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.philosophy-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Approach Split */
.approach-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

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

.approach-left,
.approach-right {
    flex: 1;
    display: flex;
}

.approach-left {
    padding: 60px;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.approach-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.difference-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.difference-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 80px 24px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 24px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Services Detail */
.services-detail {
    padding: 60px 24px;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 80px;
}

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

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
    display: flex;
}

.service-detail-content {
    padding: 60px;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin: 16px 0 24px;
}

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    margin: 20px 0 32px;
}

.service-features li {
    padding: 12px 0 12px 32px;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

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

/* Services CTA */
.services-cta {
    padding: 80px 24px;
    background: #34495e;
    color: #ffffff;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

.services-cta .btn-primary {
    background: #3498db;
    color: #ffffff;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 24px;
    background: #ffffff;
}

.contact-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 14px !important;
    color: #95a5a6 !important;
    font-style: italic;
    margin-top: 16px !important;
}

/* Contact Approach */
.contact-approach {
    padding: 80px 24px;
    background: #f8f9fa;
}

.contact-approach h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-approach > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.approach-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    padding: 32px;
    background: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.timeline-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.timeline-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Contact FAQs */
.contact-faqs {
    padding: 80px 24px;
    background: #ffffff;
}

.contact-faqs h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid #ecf0f1;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Contact Map */
.contact-map {
    padding: 80px 24px;
    background: #f8f9fa;
}

.contact-map h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-map p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Thanks Section */
.thanks-section {
    padding: 100px 24px;
    background: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-lead {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-details {
    margin: 32px 0;
    padding: 24px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.thanks-details p {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-content h2 {
    font-size: 32px;
    margin: 48px 0 32px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

.next-step {
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.next-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.next-step p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-info {
    margin: 32px 0;
    padding: 24px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.thanks-info p {
    font-size: 16px;
    color: #856404;
    margin: 0;
}

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

/* Thanks Additional */
.thanks-additional {
    padding: 80px 24px;
    background: #ffffff;
}

.thanks-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-additional > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.resource-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.resource-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.resource-card p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.6;
}

.resource-card a {
    color: #3498db;
    font-weight: 600;
}

/* Legal Page */
.legal-page {
    padding: 60px 24px 100px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-date {
    font-size: 15px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
    line-height: 1.8;
}

.legal-page ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

.cookie-table thead {
    background: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .service-card-split,
    .process-split,
    .about-split,
    .approach-split,
    .service-detail-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .intro-left,
    .intro-right,
    .process-left,
    .process-right,
    .about-left,
    .about-right,
    .approach-left,
    .approach-right,
    .service-detail-content,
    .service-detail-image {
        min-height: 400px;
    }

    .hero-left,
    .intro-right,
    .process-left,
    .about-right,
    .approach-left,
    .service-detail-content {
        padding: 40px 24px;
    }

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

    .services-preview h2,
    .cta-section h2 {
        font-size: 32px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        max-height: 300px;
        border-top: 1px solid #ecf0f1;
    }

    .nav-menu li {
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 16px 24px;
    }

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

    .sticky-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p,
    .page-hero p {
        font-size: 16px;
    }

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

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

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

    .resource-links {
        flex-direction: column;
    }

    .cookie-table {
        font-size: 13px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}