* {
    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: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.hero-split {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

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

.hero-visual {
    flex: 1;
}

.hero-visual img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2563eb;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.intro-split {
    padding: 5rem 2rem;
    background: #ffffff;
}

.intro-split,
.about-intro-split,
.approach-split,
.history-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-visual,
.about-visual,
.approach-visual,
.history-visual {
    flex: 1;
}

.intro-visual img,
.about-visual img,
.approach-visual img,
.history-visual img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-text,
.about-text,
.approach-text,
.history-text {
    flex: 1;
}

.intro-text h2,
.about-text h2,
.approach-text h2,
.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p,
.about-text p,
.approach-text p,
.history-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-highlight {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
    display: inline-block;
}

.value-split {
    padding: 5rem 2rem;
    background: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.value-split .value-text,
.value-split .value-visual {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.value-split h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-split p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.value-list {
    margin-bottom: 2rem;
}

.value-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cbd5e1;
}

.value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.value-visual img {
    border-radius: 12px;
}

.testimonials {
    padding: 5rem 2rem;
    background: #ffffff;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

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

.testimonial .author {
    font-weight: 600;
    color: #1a1a1a;
    font-style: normal;
}

.process-split {
    padding: 5rem 2rem;
    background: #f9fafb;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.process-visual,
.process-text {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
}

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

.step {
    margin-bottom: 2rem;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.step p {
    color: #666;
    line-height: 1.7;
}

.form-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.form-intro,
.form-container {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.main-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.trust-indicators {
    padding: 4rem 2rem;
    background: #ffffff;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.trust-item h3 {
    font-size: 3.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: #666;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-col ul {
    margin-top: 1rem;
}

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

.footer-col ul li a {
    color: #9ca3af;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #10b981;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

.page-hero {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: #cbd5e1;
}

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

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.service-info,
.service-visual {
    flex: 1;
}

.service-info h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.pricing-box {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-top: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

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

.services-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.services-cta p {
    font-size: 1.2rem;
    color: #e0e7ff;
    margin-bottom: 2rem;
}

.values-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

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

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

.approach-split {
    padding: 5rem 2rem;
    background: #ffffff;
}

.team-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

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

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member .role {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

.history-split {
    padding: 5rem 2rem;
    background: #ffffff;
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
}

.timeline-item .year {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: #666;
    margin: 0;
}

.about-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    text-align: center;
}

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

.about-cta p {
    font-size: 1.2rem;
    color: #d1fae5;
    margin-bottom: 2rem;
}

.contact-split {
    padding: 5rem 2rem;
    background: #ffffff;
    display: flex;
    gap: 4rem;
}

.contact-info,
.contact-map {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
}

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

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2563eb;
}

.info-block p {
    color: #555;
    line-height: 1.8;
}

.info-block a {
    color: #2563eb;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.info-note p {
    color: #555;
    margin: 0;
}

.contact-map {
    position: relative;
}

.contact-map img {
    border-radius: 12px;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
}

.map-overlay p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

.contact-reasons {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.contact-reasons h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.reasons-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.reason-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.reason-card p {
    color: #666;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.faq-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.thanks-section {
    min-height: 80vh;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    background: #ffffff;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-service {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2563eb;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 1rem;
}

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

.step-item p {
    color: #666;
    font-size: 0.95rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

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

.btn-secondary {
    background: #f3f4f6;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.thanks-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.thanks-info p {
    margin-bottom: 0.5rem;
    color: #666;
}

.thanks-info a {
    color: #2563eb;
}

.thanks-info a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

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

.last-updated {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #2563eb;
}

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

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

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

.legal-container a {
    color: #2563eb;
}

.legal-container a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-content,
    .intro-split,
    .value-split,
    .process-split,
    .form-split,
    .service-detail-split,
    .about-intro-split,
    .approach-split,
    .history-split,
    .contact-split {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

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

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

    .thanks-content {
        padding: 2rem;
    }
}
