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

html {
    font-size: 16px;
    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 {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

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

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

/* Navigation */
.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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

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

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

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

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

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

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

.hero-text {
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f8f9fa;
}

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

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

/* CTAs */
.cta-primary,
.cta-secondary,
.cta-inline,
.cta-card,
.cta-urgency,
.cta-express,
.cta-service,
.cta-additional,
.cta-next-step {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary {
    background: #2ecc71;
    color: #fff;
}

.cta-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    margin-left: 15px;
}

.cta-secondary:hover {
    background: #3498db;
    color: #fff;
}

.cta-inline {
    font-weight: 600;
    color: #3498db;
    padding: 0;
}

.cta-inline:hover {
    text-decoration: underline;
}

.cta-card,
.cta-service,
.cta-additional {
    background: #3498db;
    color: #fff;
    width: 100%;
    margin-top: 15px;
}

.cta-card:hover,
.cta-service:hover,
.cta-additional:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-urgency,
.cta-express {
    background: #e74c3c;
    color: #fff;
    font-size: 1.1rem;
}

.cta-urgency:hover,
.cta-express:hover {
    background: #c0392b;
}

.cta-next-step {
    background: #f8f9fa;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    padding: 12px 25px;
    font-size: 0.95rem;
}

.cta-next-step:hover {
    background: #e0e0e0;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

p {
    margin-bottom: 15px;
}

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

.problem-section h2 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

/* Insight Section - Split Layout */
.insight-section {
    background: #fff;
}

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

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

.split-image,
.split-text {
    flex: 1;
}

.split-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.insight-visual svg,
.about-visual svg {
    max-width: 350px;
    width: 100%;
}

.split-text {
    padding: 20px;
}

.split-text h2 {
    margin-bottom: 25px;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Services Preview */
.services-preview {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 15px;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.service-card.featured {
    border: 3px solid #3498db;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2ecc71;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2ecc71;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

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

.services-additional {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.additional-service {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #3498db;
}

.additional-service h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.price-tag {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
}

/* Testimonials */
.testimonials {
    background: #2c3e50;
    color: #fff;
}

.testimonials h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #2ecc71;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2ecc71;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

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

.urgency-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.urgency-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
}

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

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    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: #3498db;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

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

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

/* Trust Section */
.trust-section {
    background: #fff;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

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

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

.footer-col a {
    color: #bdc3c7;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(52, 152, 219, 0.98);
    padding: 15px 20px;
    z-index: 999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta.show {
    display: block;
}

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

.sticky-cta-content span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.btn-sticky {
    background: #2ecc71;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Page Specific */
.about-story,
.about-mission {
    padding: 80px 0;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-values {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2ecc71;
}

.team-section {
    background: #f8f9fa;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 10px;
}

.stats-section {
    background: #fff;
}

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

.stat-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.approach-section {
    background: #f8f9fa;
}

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

.approach-step {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
}

.why-different {
    background: #fff;
}

.difference-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.difference-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-top: 4px solid #3498db;
}

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

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

.cta-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Page Specific */
.services-main {
    background: #fff;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: #7f8c8d;
}

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

.service-full-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px;
    position: relative;
}

.service-full-card.featured-card {
    border-color: #3498db;
    border-width: 3px;
    box-shadow: 0 10px 40px rgba(52, 152, 219, 0.2);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 40px;
    background: #2ecc71;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-badge.popular {
    background: #e74c3c;
}

.service-full-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.service-full-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2ecc71;
}

.price-note {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.service-full-features {
    list-style: none;
    margin: 20px 0 30px;
}

.service-full-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

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

.service-ideal {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 1rem;
}

.additional-services {
    background: #f8f9fa;
}

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.additional-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.additional-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin: 15px 0;
}

.additional-features {
    list-style: none;
    margin: 20px 0;
}

.additional-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.additional-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 1.5rem;
}

.comparison-section {
    background: #fff;
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

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

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

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

.faq-section {
    background: #f8f9fa;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

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

.booking-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

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

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin: 40px 0;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.detail-content h3 {
    margin-bottom: 10px;
}

.detail-content p {
    color: #7f8c8d;
    margin-bottom: 5px;
}

.detail-content .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

.response-time {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.response-time ul {
    list-style: none;
    margin-top: 15px;
}

.response-time ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.response-time ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.contact-form-wrapper {
    flex: 1;
}

.faq-quick {
    background: #f8f9fa;
}

.faq-quick-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-quick-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-quick-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-more {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}

.emergency-help {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
}

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

.emergency-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.emergency-box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.emergency-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 15px;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

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

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

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.thanks-detail-box,
.thanks-info-box,
.service-info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.thanks-steps {
    list-style: none;
    counter-reset: step-counter;
}

.thanks-steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.thanks-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #3498db;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.service-info-box {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
}

.thanks-next-steps {
    background: #fff;
}

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

.next-step-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.next-step-card h3 {
    margin-bottom: 15px;
}

.thanks-testimonials {
    background: #f8f9fa;
}

.thanks-support {
    background: #fff;
}

.support-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.support-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.support-box p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-content {
    background: #fff;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

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

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3498db;
}

.legal-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.legal-content th {
    background: #f8f9fa;
    font-weight: 600;
}

.cookies-table {
    overflow-x: auto;
    display: block;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

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

    .hero-content,
    .hero-visual {
        flex: 1;
    }

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

    .problem-card {
        flex: 1;
        min-width: 250px;
    }

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

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

    .services-cards {
        flex-direction: row;
        align-items: stretch;
    }

    .service-card {
        flex: 1;
    }

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

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

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

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

    .sticky-cta-content {
        flex-direction: row;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

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

    .team-member {
        flex: 1;
        min-width: 250px;
    }

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

    .difference-card {
        flex: 1;
        min-width: 280px;
    }

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

    .additional-card {
        flex: 1;
        min-width: 300px;
    }

    .faq-quick-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

    .next-step-card {
        flex: 1;
    }

    .service-full-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

    section {
        padding: 100px 0;
    }

    .approach-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }

    .step-number {
        flex-shrink: 0;
    }

    .services-additional {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .additional-service {
        flex: 1;
        min-width: 350px;
    }
}
