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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    background: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: #e0e0e0;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a90e2;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Split Section */
.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    flex: 1;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Split Section */
.split-section {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    gap: 5rem;
    align-items: center;
}

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

.split-section.dark-bg {
    background: #1a1a2e;
    color: #ffffff;
    max-width: 100%;
    padding: 6rem 2rem;
}

.split-section.dark-bg .split-content,
.split-section.dark-bg .split-image {
    max-width: 650px;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: inherit;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Feature List */
.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: inherit;
    padding: 1rem 2.5rem;
    border: 2px solid currentColor;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Services Preview */
.services-preview {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

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

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

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

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

.service-card p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #4a90e2;
    font-weight: 600;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: inherit;
}

.step-content p {
    color: inherit;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.8;
}

.author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* CTA Form Section */
.cta-form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-intro p {
    color: #7f8c8d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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: #4a90e2;
}

.full-width {
    width: 100%;
}

/* Info Section */
.info-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.info-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-block {
    flex: 1 1 calc(33.333% - 3rem);
    min-width: 250px;
}

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

.info-block p {
    color: #7f8c8d;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem 2rem;
    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: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

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

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

.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);
}

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

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

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

/* Values Section */
.values-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 240px;
    text-align: center;
    padding: 2rem;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.value-card p {
    color: #7f8c8d;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.center-text {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 320px;
    text-align: center;
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.role {
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 5rem 2rem;
    background: #1a1a2e;
    color: #ffffff;
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.cta-content-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Services Detail Cards */
.services-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

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

.intro-content p {
    font-size: 1.15rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.pricing-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pricing-note {
    color: #7f8c8d;
    font-size: 1rem;
    margin-top: 1rem;
}

.service-detail-card {
    display: flex;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: #4a90e2;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.service-badge {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.service-detail-left p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #2c3e50;
}

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

.service-detail-right {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.btn-service {
    display: inline-block;
    background: #4a90e2;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #357abd;
    transform: translateY(-2px);
}

/* Additional Info */
.additional-info {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.info-boxes {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-box-service {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.info-box-service h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.info-box-service ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #7f8c8d;
}

.info-box-service ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Brands Section */
.brands-section {
    padding: 4rem 2rem;
    text-align: center;
}

.brands-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.brands-list {
    max-width: 1000px;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.brand-tag {
    background: #f8f9fa;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: #2c3e50;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.brand-tag:hover {
    background: #4a90e2;
    color: #ffffff;
    border-color: #4a90e2;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 2rem;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

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

.faq-item p {
    color: #7f8c8d;
    line-height: 1.7;
}

/* Contact Split */
.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info-section > p {
    color: #7f8c8d;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-text p {
    color: #7f8c8d;
    line-height: 1.7;
}

.contact-text a {
    color: #4a90e2;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.map-section {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.9);
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Service Area Section */
.service-area-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.area-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.area-content > p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.areas-list {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.area-column {
    flex: 1 1 300px;
}

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

.area-column ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #7f8c8d;
}

.area-column ul li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.area-note {
    color: #7f8c8d;
    font-style: italic;
    margin-top: 2rem;
}

/* Response Time Section */
.response-time-section {
    padding: 5rem 2rem;
}

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

.response-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.response-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

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

.response-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.response-card p {
    opacity: 0.9;
}

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

/* Thanks Section */
.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.next-steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

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

.steps-list {
    list-style-position: inside;
    list-style-type: decimal;
}

.steps-list li {
    padding: 0.8rem 0;
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-info-box {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-info-box p {
    color: #7f8c8d;
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

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

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

.legal-date {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #2c3e50;
}

.legal-section h4 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: #2c3e50;
}

.legal-section p {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #7f8c8d;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.legal-section a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

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

.cookie-table td {
    color: #7f8c8d;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
    }

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

    .split-section,
    .split-section.reverse {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .nav-menu {
        gap: 1.5rem;
    }
}

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

    .hero-lead {
        font-size: 1.1rem;
    }

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

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

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

    .testimonial {
        flex: 1 1 100%;
    }

    .info-block {
        flex: 1 1 100%;
    }

    .value-card {
        flex: 1 1 calc(50% - 2rem);
    }

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

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
    }

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

    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

    .form-container {
        padding: 2rem 1.5rem;
    }
}
