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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #4a90e2;
    --accent-color: #67b8ff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #757575;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

.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: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-content {
    max-width: 700px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.hero-visual {
    max-width: 800px;
    width: 100%;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

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

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.statement-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
}

.approach-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.split-visual {
    flex: 1;
}

.split-visual svg {
    width: 100%;
    height: auto;
}

.link-arrow {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.3s ease;
}

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

.services-preview-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.services-preview-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.services-cta {
    text-align: center;
}

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

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

.results-section {
    padding: 100px 20px;
    background-color: var(--primary-color);
    color: white;
}

.results-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.testimonial-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--primary-color);
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 600;
}

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

.form-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.contact-form {
    background-color: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    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: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.trust-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

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

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

.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

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

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.page-hero {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

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

.story-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.story-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    min-width: 240px;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
}

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

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

.expertise-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

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

.industry-list li {
    font-size: 18px;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

.industry-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-detail-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.approach-detail-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.step-item {
    display: flex;
    gap: 24px;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 60px;
}

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

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

.team-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.highlight-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.highlight-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

.cta-about-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-about-section h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.services-detail-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.service-detail-card {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 40px;
    overflow: hidden;
}

.service-detail-header {
    background-color: var(--bg-light);
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin: 0;
}

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

.service-detail-content {
    padding: 32px;
}

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

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

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

.service-list li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.pricing-note-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

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

.pricing-note-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.process-timeline-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.process-timeline-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {
    display: flex;
    gap: 24px;
}

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

.timeline-content {
    flex: 1;
    padding-top: 12px;
}

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

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.cta-services-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-services-section h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.contact-info-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

.contact-info-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.contact-map-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-map-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder svg {
    width: 100%;
    height: auto;
}

.contact-cta-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.contact-cta-section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.contact-cta-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-cta-section a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-white);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 48px;
    font-size: 18px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-bottom: 48px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.next-steps-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: var(--bg-light);
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
}

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

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

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

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

.thanks-resources-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.thanks-resources-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.thanks-resources-section > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.resources-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.resource-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

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

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

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

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

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

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

.legal-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.legal-footer p {
    text-align: center;
}

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

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

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

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

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

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

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

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

    .stats-container {
        flex-direction: column;
    }

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

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-marker {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }

    .cookie-table {
        font-size: 14px;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

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

    .statement-section h2,
    .split-content h2 {
        font-size: 28px;
    }

    .services-preview-section h2,
    .results-section h2,
    .trust-section h2,
    .form-section h2,
    .final-cta-section h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 24px;
    }
}
