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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7db5;
    --accent-color: #f89406;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

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

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

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

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

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

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

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: none;
    list-style: none;
    gap: 30px;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    padding: 60px 5%;
    gap: 40px;
}

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

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
}

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

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

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

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

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

.intro-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
    background: var(--bg-light);
}

.intro-split.reverse {
    background: var(--bg-white);
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

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

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

.stats-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 60px 5%;
    background: var(--primary-color);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.problem-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.problem-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

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

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

.benefit-list li {
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.services-grid {
    padding: 80px 5%;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

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

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

.service-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

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

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

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.service-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 10px;
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

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

.btn-select-service:hover {
    background: var(--secondary-color);
}

.testimonial-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
    background: var(--bg-light);
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.features-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.features-split.reverse {
    background: var(--bg-light);
}

.features-visual {
    flex: 1;
}

.features-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.features-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.features-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-item h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.form-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
    background: var(--bg-light);
}

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

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

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.form-note {
    font-size: 15px;
    color: var(--success-color);
    font-weight: 600;
}

.form-container {
    flex: 1;
}

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

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

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

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

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

.trust-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

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

.trust-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.trust-points li {
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.trust-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.trust-visual {
    flex: 1;
}

.trust-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cta-final {
    text-align: center;
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
}

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

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

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

.cta-large:hover {
    background: #d97f05;
    transform: scale(1.05);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-col p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: white;
    opacity: 0.85;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

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

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

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

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

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d97f05;
    transform: translateY(-2px);
}

.page-hero-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
    background: var(--bg-light);
    min-height: 400px;
}

.story-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.story-split.reverse {
    background: var(--bg-light);
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.story-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.values-section {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.mission-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.mission-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.mission-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.team-section {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.expertise-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.expertise-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.expertise-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.numbers-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.numbers-split.reverse {
    background: var(--bg-light);
}

.numbers-visual {
    flex: 1;
}

.numbers-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.numbers-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.numbers-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

.number-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.number-item .number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

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

.approach-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.approach-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cta-section {
    text-align: center;
    padding: 80px 5%;
    background: var(--bg-light);
}

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

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

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    padding: 60px 5%;
    background: var(--bg-white);
}

.service-detail-card.reverse {
    background: var(--bg-light);
}

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

.service-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-tagline {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-detail-info h2 {
    font-size: 38px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-info h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 10px;
    font-weight: 600;
}

.service-detail-info p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.price-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 10px;
}

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

.price-box .price-period {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 4px;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.addons-section {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.addons-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.addon-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.addon-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

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

.addon-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.addon-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.addon-features li {
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
}

.addon-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
}

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

.comparison-section {
    padding: 80px 5%;
}

.comparison-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

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

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

.comparison-table thead {
    background: 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: 700;
    font-size: 16px;
}

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

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

.faq-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
    background: var(--bg-light);
}

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

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

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.services-cta {
    text-align: center;
    padding: 80px 5%;
}

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

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

.contact-info-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

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

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

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

.contact-block .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-reasons {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-reasons h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

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

.reason-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.response-time-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.response-time-split.reverse {
    background: var(--bg-light);
}

.response-image {
    flex: 1;
}

.response-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.response-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.response-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.office-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.office-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.office-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.office-image {
    flex: 1;
}

.office-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.partners-section {
    padding: 60px 5%;
    text-align: center;
    background: var(--bg-light);
}

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

.partners-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-hero {
    padding: 100px 5%;
    text-align: center;
    background: var(--bg-light);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-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: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-selected {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.next-steps-split {
    display: flex;
    flex-direction: column;
    padding: 80px 5%;
    gap: 40px;
}

.next-steps-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.next-steps-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
}

.step-item {
    display: flex;
    gap: 20px;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.next-steps-image {
    flex: 1;
}

.next-steps-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.while-waiting {
    padding: 80px 5%;
    background: var(--bg-light);
    text-align: center;
}

.while-waiting h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

.waiting-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.waiting-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

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

.waiting-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.link-arrow:hover {
    color: var(--secondary-color);
}

.thanks-contact {
    padding: 60px 5%;
    text-align: center;
}

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

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

.email-link {
    font-size: 20px;
    font-weight: 600;
}

.legal-header {
    padding: 80px 5% 40px;
    text-align: center;
    background: var(--bg-light);
}

.legal-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.legal-content {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 40px;
}

.legal-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 40px;
}

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

.legal-section h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

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

.legal-section ul {
    margin: 16px 0 16px 24px;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--bg-light);
}

.cookie-table th {
    padding: 14px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.cookie-table td {
    padding: 14px;
    font-size: 14px;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

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

    .nav-toggle {
        display: none;
    }

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

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

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

    .stats-section {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-intro {
        flex: 0 0 35%;
    }

    .faq-list {
        flex: 1;
    }

    .contact-info-split {
        flex-direction: row;
    }

    .reasons-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .reason-card {
        flex: 0 0 calc(50% - 12px);
    }

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

    .response-time-split.reverse {
        flex-direction: row-reverse;
    }

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

    .next-steps-split {
        flex-direction: row;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }
}
