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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
}

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

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

a:hover {
    color: var(--primary-dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

section {
    padding: 60px 0;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-split {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-split .hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-gray);
}

.hero-right {
    flex: 1;
    width: 100%;
}

.hero-right img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.cta-primary.large {
    padding: 18px 42px;
    font-size: 18px;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
}

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

.trust-bar {
    background-color: var(--bg-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

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

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.split-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
}

.split-image {
    flex: 1;
    width: 100%;
}

.split-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    padding-left: 32px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.problem-section {
    background-color: var(--bg-light);
}

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

.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-width: 3px;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.service-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features span {
    font-size: 14px;
    color: var(--text-gray);
}

.service-price {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.why-section {
    background-color: var(--bg-light);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.benefit-item {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.benefit-item strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.testimonials-section {
    background-color: var(--bg-white);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 360px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.form-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
}

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

.form-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-content .cta-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

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

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #d97706;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    color: white;
}

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

.page-hero.small {
    padding: 60px 0;
}

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

.page-hero .lead {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    width: 100%;
    max-width: 280px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

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

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.approach-step {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    width: 100%;
    max-width: 280px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.approach-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 20px;
}

.approach-step p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

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

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

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

.cta-box p {
    font-size: 17px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-box .cta-primary {
    background-color: white;
    color: var(--primary-color);
}

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

.services-detail-section {
    padding: 60px 0;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-width: 3px;
}

.service-badge {
    position: absolute;
    top: -16px;
    left: 40px;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
}

.service-detail-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-tagline {
    font-size: 17px;
    color: var(--text-gray);
}

.service-detail-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.service-detail-body {
    display: flex;
    flex-direction: column;
}

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

.detail-description {
    flex: 1;
}

.detail-description h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.detail-description h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

.detail-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.detail-included {
    flex: 1;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 10px;
}

.detail-included h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.detail-included ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.detail-included ul li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    padding-left: 24px;
    position: relative;
}

.detail-included ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.detail-included ul li strong {
    color: var(--text-dark);
}

.comparison-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table td {
    font-size: 15px;
    color: var(--text-gray);
}

.comparison-table tbody tr:hover {
    background-color: var(--bg-light);
}

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

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

.faq-item {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.map-container {
    margin-top: 32px;
}

.map-container img {
    border-radius: 12px;
    width: 100%;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 28px;
}

.why-contact-section {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.why-item {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
}

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

.why-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.thanks-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.thanks-info {
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thanks-steps li {
    counter-increment: step-counter;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background-color: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

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

.thanks-contact p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.thanks-contact p:last-child {
    margin-bottom: 0;
}

.thanks-contact a {
    font-weight: 600;
    font-size: 17px;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 16px;
}

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

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 28px 0 12px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 24px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .hero-split .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

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

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

    .service-detail-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

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

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

    .nav-links {
        display: flex;
    }
}

@media (max-width: 767px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .section-header h2 {
        font-size: 30px;
    }

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

    .trust-items {
        flex-direction: column;
        gap: 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

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

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

@media (max-width: 480px) {
    .nav-brand a {
        font-size: 20px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 13px;
    }
}