/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Navigation */
.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

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

.nav-links a {
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e74c3c;
}

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

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

/* Split Screen Layouts */
.hero-split,
.intro-split,
.trust-split,
.process-split,
.about-split,
.team-split,
.approach-split,
.service-header-split {
    display: flex;
    min-height: 500px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.split-left {
    padding: 80px 60px;
}

.split-right {
    padding: 80px 60px;
}

.hero-split .split-left {
    padding: 120px 80px;
}

.hero-image {
    padding: 0;
    overflow: hidden;
}

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

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

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a252f;
}

.lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.content-block {
    max-width: 540px;
}

.content-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a252f;
}

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

/* Buttons */
.btn-primary,
.btn-primary-large,
.btn-secondary,
.btn-submit,
.btn-card,
.btn-service {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary,
.btn-primary-large,
.btn-submit {
    background: #e74c3c;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary-large:hover,
.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.btn-primary-large {
    padding: 20px 48px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

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

.btn-card,
.btn-service {
    width: 100%;
    background: #3498db;
    color: #ffffff;
}

.btn-card:hover,
.btn-service:hover {
    background: #2980b9;
}

/* Stats Bar */
.stats-bar {
    background: #1a252f;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 16px;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a252f;
}

.section-header-center p {
    font-size: 20px;
    color: #777;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.card-content p {
    color: #666;
    margin-bottom: 16px;
    font-size: 16px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

/* Trust Section */
.trust-item {
    margin-bottom: 32px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a252f;
}

.trust-item p {
    color: #666;
    font-size: 17px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    color: #1a252f;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
    font-style: italic;
}

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

.testimonial-author strong {
    color: #1a252f;
    font-size: 16px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a252f;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.cta-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.cta-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a252f;
}

.cta-left p {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

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

.benefit-list li {
    padding-left: 28px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

/* Form Styles */
.order-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    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: #e74c3c;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    line-height: 1.7;
    font-size: 15px;
}

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

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1a252f;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e74c3c;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

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

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

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

.header-subtitle {
    font-size: 22px;
    opacity: 0.95;
}

/* Services Detail Page */
.pricing-intro {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a252f;
}

.pricing-intro p {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.highlight-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin-top: 32px;
    border-radius: 8px;
    font-size: 17px;
    color: #856404;
}

.services-detailed {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

.service-detail-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-header-split {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
}

.service-header-left {
    flex: 1.5;
}

.service-header-right {
    flex: 1;
}

.service-header-left h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a252f;
}

.service-header-left p {
    font-size: 18px;
    color: #666;
}

.service-header-right img {
    border-radius: 12px;
    width: 100%;
}

.pricing-table {
    margin-bottom: 32px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-name {
    font-size: 17px;
    color: #2c3e50;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
}

.pricing-note {
    margin-top: 16px;
    font-size: 15px;
    color: #888;
    font-style: italic;
}

.additional-fees {
    padding: 80px 0;
    background: #ffffff;
}

.additional-fees h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.fee-table {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-name {
    font-size: 17px;
    color: #2c3e50;
}

.fee-price {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.fee-note {
    margin-top: 24px;
    font-size: 15px;
    color: #666;
    text-align: center;
}

.warranty-section {
    padding: 80px 0;
    background: #1a252f;
}

.warranty-box {
    text-align: center;
}

.warranty-box h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #ffffff;
}

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

.warranty-item {
    flex: 1 1 300px;
    max-width: 360px;
    background: #2c3e50;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
}

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

.warranty-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.warranty-item p {
    color: #bdc3c7;
    font-size: 16px;
    line-height: 1.6;
}

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

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

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

.faq-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

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

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

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

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

.cta-sub {
    margin: 16px 0;
    font-size: 16px;
}

/* Contact Page */
.contact-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-split {
    display: flex;
    gap: 60px;
}

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

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

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.contact-block p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.contact-block a {
    color: #e74c3c;
}

.contact-note {
    font-size: 15px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

.contact-cta-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.contact-cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-cta-box p {
    font-size: 17px;
    color: #666;
    margin-bottom: 24px;
}

.contact-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #555;
}

.feature-icon {
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.contact-image img {
    border-radius: 12px;
}

.service-areas {
    padding: 80px 0;
    background: #ffffff;
}

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

.area-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.area-card p {
    font-size: 16px;
    color: #666;
}

.areas-note {
    margin-top: 32px;
    text-align: center;
    font-size: 16px;
    color: #888;
    font-style: italic;
}

.response-times {
    padding: 80px 0;
    background: #f8f9fa;
}

.response-times h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

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

.timeline-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
}

.timeline-number {
    font-size: 36px;
    font-weight: 800;
    color: #e74c3c;
    min-width: 100px;
    text-align: center;
}

.timeline-text h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a252f;
}

.timeline-text p {
    font-size: 17px;
    color: #666;
}

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

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

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    background: #f8f9fa;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: #ffffff;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a252f;
}

.thanks-lead {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.thanks-info {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 48px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a252f;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.step-icon {
    width: 48px;
    height: 48px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a252f;
}

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

.thanks-service-info {
    background: #fff3cd;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid #ffc107;
}

.thanks-contact {
    margin-bottom: 40px;
}

.thanks-contact h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.thanks-contact p {
    font-size: 17px;
    color: #666;
}

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

.thanks-additional {
    padding: 80px 0;
    background: #ffffff;
}

.thanks-additional h2 {
    font-size: 42px;
    margin-bottom: 48px;
    text-align: center;
    color: #1a252f;
}

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

.link-card {
    flex: 1 1 300px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.link-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.link-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.link-card a {
    color: #e74c3c;
    font-weight: 600;
}

/* About Page */
.values-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.value-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

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

.numbers-section {
    padding: 80px 0;
    background: #1a252f;
}

.numbers-section .section-title {
    color: #ffffff;
}

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

.number-block {
    flex: 1 1 240px;
    max-width: 280px;
    text-align: center;
}

.big-number {
    font-size: 64px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 12px;
}

.number-block p {
    font-size: 17px;
    color: #bdc3c7;
}

.approach-item {
    margin-bottom: 28px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a252f;
}

.approach-item p {
    font-size: 17px;
    color: #666;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background: #ffffff;
}

.legal-intro {
    font-size: 16px;
    color: #888;
    margin-bottom: 32px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: #1a252f;
}

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

.legal-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 17px;
    color: #555;
    margin-bottom: 8px;
}

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

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table th,
.cookies-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.btn-cookies-manage {
    background: #e74c3c;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    margin: 24px 0;
    transition: all 0.3s ease;
}

.btn-cookies-manage:hover {
    background: #c0392b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .process-split,
    .about-split,
    .team-split,
    .approach-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 60px 40px;
    }

    .service-header-split {
        flex-direction: column;
    }

    .cta-content-split {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .content-block h2 {
        font-size: 32px;
    }

    .split-left,
    .split-right {
        padding: 40px 24px;
    }

    .section-header-center h2,
    .section-title,
    .page-header h1 {
        font-size: 36px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 14px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .service-detail-block {
        padding: 32px 24px;
    }
}

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

    .lead {
        font-size: 18px;
    }

    .stat-number {
        font-size: 36px;
    }

    .big-number {
        font-size: 48px;
    }

    .order-form {
        padding: 28px 20px;
    }
}
