:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #dfe6e9;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: none;
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: #d35400;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.navigation {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    background: var(--bg-light);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-asymmetric {
    padding: 100px 0;
    background: var(--bg-white);
}

.intro-offset {
    margin-bottom: 48px;
}

.intro-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.intro-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.intro-columns {
    display: flex;
    gap: 60px;
}

.intro-col {
    flex: 1;
    font-size: 18px;
    color: var(--text-light);
}

.services-highlight {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.label-accent {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.services-grid-featured {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card-large {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-visual {
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-visual img {
    transform: scale(1.05);
}

.service-details {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    flex: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 28px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-visual {
    flex: 1;
    background: var(--bg-light);
    overflow: hidden;
}

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

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: var(--primary-color);
}

.testimonial-inner {
    max-width: 600px;
}

.quote-mark {
    font-size: 80px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 24px;
}

.testimonial-content blockquote p {
    font-size: 22px;
    color: white;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-content cite {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-style: normal;
}

.process-flow {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-flow h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 64px;
}

.process-steps {
    display: flex;
    gap: 48px;
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.trust-indicators {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-grid {
    display: flex;
    gap: 48px;
}

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

.trust-icon {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.trust-item h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.cta-section-offset {
    padding: 80px 0;
    background: var(--bg-white);
}

.cta-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

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

.value-proposition {
    padding: 100px 0;
    background: var(--bg-white);
}

.value-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.value-image {
    flex: 1;
}

.value-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

.form-group {
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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: var(--accent-color);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.btn-submit {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--secondary-color);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.sticky-cta-content span {
    font-weight: 600;
}

.btn-sticky {
    padding: 10px 24px;
    background: white;
    color: var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 16px;
}

.lead {
    font-size: 22px;
    opacity: 0.9;
}

.about-intro-split {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.philosophy-grid {
    display: flex;
    gap: 48px;
}

.philosophy-item {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.timeline-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.timeline-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 64px;
}

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

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-values {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-values h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 64px;
}

.values-grid {
    display: flex;
    gap: 32px;
}

.value-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.value-icon {
    color: var(--accent-color);
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.certifications {
    padding: 80px 0;
    background: var(--bg-white);
}

.certifications h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.cert-list {
    max-width: 800px;
    margin: 0 auto;
}

.cert-item {
    padding: 24px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 16px;
}

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

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

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

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

.btn-cta-primary:hover {
    background: var(--bg-light);
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

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

.service-detail-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-note {
    font-size: 14px;
    font-style: italic;
    color: var(--text-light);
    margin-top: 16px;
}

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

.service-process h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 64px;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-detail {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

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

.process-step-detail h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-step-detail p {
    color: var(--text-light);
    line-height: 1.7;
}

.pricing-transparency {
    padding: 80px 0;
    background: var(--bg-white);
}

.pricing-transparency h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.pricing-info {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-light);
}

.pricing-factors {
    margin: 24px 0;
    padding-left: 24px;
}

.pricing-factors li {
    margin-bottom: 12px;
}

.service-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.cta-centered h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-centered p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-cta-large:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-tagline {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    padding: 24px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.contact-note p {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.contact-faq h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.thanks-icon {
    color: var(--success-color);
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.thanks-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.next-step {
    flex: 1;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.next-step p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-page li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-light);
}

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

    .hero-content {
        padding: 60px 32px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .intro-columns {
        flex-direction: column;
        gap: 32px;
    }

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

    .trust-grid {
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 calc(50% - 24px);
    }

    .value-split {
        flex-direction: column;
        gap: 40px;
    }

    .about-intro-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .values-grid {
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 16px);
    }

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

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

    .next-steps {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
    }

    .services-grid-featured {
        flex-direction: column;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        z-index: 999;
    }

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

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .intro-offset h2,
    .section-header-center h2 {
        font-size: 32px;
    }

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

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

    .faq-item {
        flex: 1 1 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .sticky-cta {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

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

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

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

    .service-detail-card {
        padding: 24px;
    }

    .thanks-container {
        padding: 40px 24px;
    }

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