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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.split-left,
.split-right {
    flex: 1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

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

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

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

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #667eea;
    font-weight: 700;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.btn-large {
    display: inline-block;
    padding: 20px 50px;
    background: #667eea;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-large:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.problem-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.problem-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-icon {
    font-size: 28px;
    color: #e74c3c;
    flex-shrink: 0;
}

.problem-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.problem-item p {
    color: #7f8c8d;
}

.split-right h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-right p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.insight-section {
    padding: 100px 20px;
    background: #ffffff;
}

.insight-header {
    text-align: center;
    margin-bottom: 60px;
}

.insight-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.insight-intro {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.insight-card {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 20px;
    background: #f8f9fa;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-card {
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.service-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.process-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    flex-shrink: 0;
    width: 80px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 16px;
    color: #666;
}

.testimonials-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

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

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

.testimonial {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.testimonial.highlight {
    background: rgba(102, 126, 234, 0.3);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.8;
}

.benefits-section {
    padding: 100px 20px;
    background: #ffffff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #666;
    font-size: 16px;
}

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

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

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

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

.form-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    padding: 16px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.trust-section {
    padding: 80px 20px;
    background: #ffffff;
}

.trust-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
}

.trust-label {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-section a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffffff;
}

.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: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 18px 35px;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.story-section {
    padding: 100px 20px;
    background: #ffffff;
}

.story-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.story-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 100px 20px;
    background: #ffffff;
}

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

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

.team-member {
    flex: 0 0 calc(25% - 23px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

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

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

.numbers-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

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

.numbers-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.big-number {
    font-size: 56px;
    font-weight: 700;
    color: #667eea;
}

.number-label {
    font-size: 16px;
    text-align: center;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 20px;
    background: #f8f9fa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #667eea;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #e74c3c;
    color: #ffffff;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 12px;
    z-index: 10;
}

.service-detail-content {
    display: flex;
    padding: 50px;
    gap: 50px;
}

.service-detail-left {
    flex: 2;
}

.service-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.service-detail-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-timeline {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.service-guarantee {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.price-box {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    width: 100%;
}

.price-box.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price-value {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.price-save {
    display: block;
    font-size: 14px;
    color: #27ae60;
    font-weight: 600;
}

.comparison-section {
    padding: 80px 20px;
    background: #ffffff;
}

.comparison-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 30px;
}

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

.comparison-note p {
    font-size: 18px;
    color: #666;
}

.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.contact-info-box {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-info-box a {
    color: #667eea;
    font-weight: 600;
}

.info-note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.map-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    background: #e1e8ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #666;
}

.contact-cta-section {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.contact-cta-box p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    background: #f8f9fa;
    min-height: 70vh;
}

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #27ae60;
    margin-bottom: 30px;
    font-weight: 600;
}

.thanks-details {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-info {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-steps {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.thanks-steps li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.legal-content {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-content .container {
    max-width: 900px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-date {
    color: #999;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #667eea;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .container-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 30px;
    }

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

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

    .testimonials-flex {
        flex-direction: column;
    }

    .team-grid {
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 15px);
    }

    .service-detail-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .team-member {
        flex: 0 0 100%;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 15px 25px;
        font-size: 14px;
    }

    .service-detail-content {
        padding: 30px 20px;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .thanks-box {
        padding: 40px 20px;
    }

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

    .process-step {
        flex-direction: column;
    }

    .step-number {
        width: auto;
    }

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

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

    .btn-large {
        padding: 16px 30px;
        font-size: 16px;
    }

    .insight-header h2,
    .process-section h2,
    .testimonials-section h2,
    .values-section h2,
    .team-section h2,
    .numbers-section h2 {
        font-size: 32px;
    }

    .service-detail-card h2 {
        font-size: 26px;
    }

    .thanks-box h1 {
        font-size: 32px;
    }

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