/* 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-color: #ffffff;
    overflow-x: hidden;
}

/* Navigation */
.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

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

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

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

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 3rem;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 600px;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cta-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: #e74c3c;
    text-decoration: none;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 4rem 5%;
    background: #2c3e50;
    color: #ffffff;
    flex-wrap: wrap;
    gap: 2rem;
}

.indicator-item {
    text-align: center;
    min-width: 200px;
}

.indicator-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.indicator-label {
    font-size: 1.1rem;
}

/* Split Sections */
.split-standard,
.split-reverse {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 3rem;
}

.visual-box {
    width: 100%;
    max-width: 500px;
}

.visual-box.dark {
    background: #2c3e50;
    padding: 2rem;
    border-radius: 10px;
}

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

.insight-box {
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    margin-top: 2rem;
}

.insight-box strong {
    color: #e67e22;
}

/* Problem Section */
.problem-section {
    background: #ffffff;
}

/* Solution Intro */
.solution-intro {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.features-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Case Story */
.case-story {
    background: #f8f9fa;
}

.case-badge {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

blockquote {
    border-left: 4px solid #e74c3c;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

/* Services Selection */
.services-selection {
    padding: 5rem 5%;
    background: #ffffff;
}

.services-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e74c3c;
}

.service-card.featured {
    border-color: #e74c3c;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-ideal {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #555;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-card cite {
    color: #e74c3c;
    font-size: 0.95rem;
}

/* Process Section */
.process-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    min-width: 80px;
}

.step-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.process-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-item h4 {
    font-size: 1.3rem;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.process-item p {
    color: #666;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-urgency {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.5rem 3rem;
    background: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.form-section {
    background: #f8f9fa;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group.checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox a {
    color: #e74c3c;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    font-size: 1.1rem;
    color: #2ecc71;
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    padding: 5rem 5%;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}

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

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

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

/* Page Hero */
.page-hero {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    margin-top: 80px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 5%;
}

.service-detail-card {
    margin-bottom: 4rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.service-detail-header {
    background: #f8f9fa;
    padding: 2rem 3rem;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.price-badge {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 700;
}

.service-detail-content {
    padding: 3rem;
}

.split-layout {
    display: flex;
    gap: 3rem;
}

.detail-info {
    flex: 2;
}

.detail-info h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.detail-info h3:first-child {
    margin-top: 0;
}

.detailed-list {
    list-style: none;
}

.detailed-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.detailed-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #e74c3c;
    font-size: 1.5rem;
}

.detail-visual {
    flex: 1;
}

.specs-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.specs-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #555;
}

.specs-table td:last-child {
    text-align: right;
    color: #2c3e50;
}

.bonus-box {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.bonus-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.bonus-box ul {
    list-style: none;
}

.bonus-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.bonus-box ul li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #f39c12;
}

.service-cta-box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.service-cta-box.highlight {
    background: #fff5f5;
    padding: 1.5rem;
    border-radius: 10px;
}

.service-cta-box.centered {
    text-align: center;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.custom-service .detail-info.full-width {
    flex: 1;
}

.custom-features {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.custom-feature-col {
    flex: 1;
}

.custom-feature-col h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.custom-feature-col ul {
    list-style: none;
}

.custom-feature-col ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.custom-feature-col ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background: #2c3e50;
    color: #ffffff;
}

.comparison-table th {
    padding: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.comparison-table .price-row {
    background: #fff5f5;
    font-size: 1.1rem;
}

.comparison-table .price-row td {
    padding: 1.5rem;
}

/* Additional Services */
.additional-services {
    padding: 5rem 5%;
}

.additional-services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.additional-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #e74c3c;
}

.additional-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-small {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-services,
.faq-contact {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.faq-services h2,
.faq-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* CTA Services */
.cta-services {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Page */
.about-intro {
    background: #ffffff;
}

.stats-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-box {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
}

/* Mission */
.mission-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.mission-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.lead-text {
    font-size: 1.4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #555;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Team */
.team-section {
    background: #ffffff;
}

.team-visual-box svg {
    width: 100%;
    max-width: 500px;
}

.team-list {
    list-style: none;
    margin: 2rem 0;
}

.team-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.team-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Timeline */
.timeline-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.timeline-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e74c3c;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    min-width: 80px;
    text-align: right;
}

.timeline-content {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffffff;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Certifications */
.certifications-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.certifications-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cert-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-card {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.cert-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

/* Partnerships */
.partnerships-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.partnerships-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto;
}

.partner-item {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.partner-item strong {
    font-size: 1.2rem;
    color: #2c3e50;
}

.partner-item span {
    color: #666;
}

/* Why Us */
.why-us-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.why-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.why-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.why-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    padding-top: 4rem;
}

.why-number {
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    opacity: 0.3;
}

.why-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* CTA About */
.cta-about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-main {
    background: #ffffff;
}

.contact-info-block {
    margin: 2rem 0;
}

.contact-info-block h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-icon {
    font-size: 2rem;
    min-width: 40px;
}

.contact-details strong {
    display: block;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: #555;
    line-height: 1.8;
}

.contact-details a {
    color: #e74c3c;
    text-decoration: none;
}

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

.note {
    font-size: 0.9rem;
    color: #2ecc71;
    font-weight: 600;
    margin-top: 0.5rem;
}

.office-locations {
    margin-top: 3rem;
}

.office-locations h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.location-item {
    margin-bottom: 1.5rem;
}

.location-item strong {
    display: block;
    font-size: 1.1rem;
    color: #e74c3c;
    margin-bottom: 0.3rem;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* Contact Features */
.contact-features {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.contact-features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.features-contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-contact-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-contact-card h3 {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Response Time */
.response-time {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.response-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.response-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.response-item {
    text-align: center;
    min-width: 250px;
}

.response-time-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.response-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Emergency Contact */
.emergency-contact {
    padding: 5rem 5%;
    background: #e74c3c;
    color: #ffffff;
}

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

.emergency-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.emergency-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.emergency-info p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.emergency-info a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.small-note {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    margin-top: 80px;
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.step-item {
    flex: 1;
    min-width: 200px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #666;
    font-size: 0.95rem;
}

.thanks-cta {
    margin-bottom: 2rem;
}

.thanks-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.small-text {
    font-size: 0.95rem;
    color: #666;
}

.small-text a {
    color: #e74c3c;
    text-decoration: none;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 5%;
    margin-top: 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #555;
}

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

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #f8f9fa;
}

.cookies-table thead {
    background: #2c3e50;
    color: #ffffff;
}

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

/* Centered Utility */
.centered {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .split-standard,
    .split-reverse {
        flex-direction: column;
    }

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

    .custom-features {
        flex-direction: column;
    }

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

    .timeline:before {
        left: 50px;
    }

    .timeline-year {
        min-width: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .trust-indicators {
        flex-direction: column;
    }

    .services-cards,
    .testimonials-grid,
    .values-grid,
    .why-grid,
    .cert-grid {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .legal-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .nav-floating {
        padding: 1rem 3%;
    }

    .split-content,
    .split-visual,
    .hero-content {
        padding: 2rem 3%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .service-detail-header {
        padding: 1.5rem;
    }

    .service-detail-content {
        padding: 1.5rem;
    }
}