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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
    --error-color: #ef4444;
}

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);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-visual {
    margin-top: 30px;
}

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

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

.cta-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

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

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

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

.intro-card {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
    font-size: 15px;
}

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

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

.insight-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 36px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.service-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
}

.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-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.service-description {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

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

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

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

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

.cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    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(--primary-color);
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

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

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

.trust-content img {
    width: 100%;
    border-radius: 12px;
}

.trust-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.final-cta-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

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

.disclaimer-box {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.disclaimer-box p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

.references-section {
    padding: 40px 0 60px;
    background-color: var(--bg-white);
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-column p {
    font-size: 14px;
    color: var(--bg-light);
    opacity: 0.8;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--bg-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.5);
}

.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

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

.about-intro {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

.story-card {
    background-color: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.story-card p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

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

.value-card p {
    color: var(--text-light);
    font-size: 15px;
}

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

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.member-role {
    font-size: 13px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-light);
    font-size: 15px;
}

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

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.step-number {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

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

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    flex: 1;
    min-width: 220px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
}

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

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

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

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

.service-detail-card.featured-service {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
}

.service-detail-card.premium-service {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-badge {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.service-badge.popular {
    background-color: var(--accent-color);
    color: white;
}

.service-badge.vip {
    background-color: var(--primary-color);
    color: white;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--text-dark);
}

.service-lead {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-cta {
    margin-top: 32px;
}

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

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

.comparison-table {
    width: 100%;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: white;
}

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

.comparison-table th {
    font-weight: 600;
    font-size: 14px;
}

.comparison-table td {
    font-size: 14px;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
}

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

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

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

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

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

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

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

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.email-note {
    font-size: 14px;
    font-style: italic;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
}

.info-box {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
}

.info-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.info-box p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.location-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 32px;
    border-radius: 12px;
}

.location-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.location-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.location-card ul {
    list-style: none;
    padding-left: 0;
}

.location-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
}

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

.mt-2 {
    margin-top: 16px;
}

.thanks-section {
    padding: 80px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.service-info {
    margin-bottom: 40px;
}

.selected-service-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.selected-service-box h3 {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-name {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    text-align: left;
}

.step-box {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 12px;
}

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

.step-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

.thanks-cta {
    margin: 50px 0;
}

.thanks-cta p {
    font-size: 16px;
    margin-bottom: 24px;
}

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

.confirmation-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-top: 40px;
}

.confirmation-note p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.testimonial-thanks h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.testimonial-single {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.legal-text h2 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

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

.legal-text h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

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

.legal-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-text ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 15px;
}

.cookies-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.cookies-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

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

    .hamburger {
        display: none;
    }

    .hero-section {
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .insight-layout {
        flex-direction: row;
    }

    .insight-image {
        flex: 1;
    }

    .insight-text {
        flex: 1;
    }

    .about-layout {
        flex-direction: row;
    }

    .about-image {
        flex: 1;
    }

    .about-text {
        flex: 1;
    }

    .trust-content {
        flex-direction: row;
    }

    .trust-content img {
        flex: 1;
    }

    .trust-text {
        flex: 1;
    }

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

    .contact-info-section {
        flex: 1;
    }

    .contact-visual {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
    }

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

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