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

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Navigation */
.navbar {
    background-color: #1a1a1a;
    color: #ffffff;
    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: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    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: 2rem;
}

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

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-service,
.btn-submit,
.cta-hero,
.cta-inline,
.cta-button,
.cta-final-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary,
.btn-service,
.btn-submit,
.cta-hero,
.cta-button,
.cta-final-button {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover,
.btn-service:hover,
.btn-submit:hover,
.cta-hero:hover,
.cta-button:hover,
.cta-final-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

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

.cta-inline {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
}

.cta-inline:hover {
    background-color: #c0392b;
}

/* Hero Split Section */
.hero-split {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-text {
    flex: 1;
    padding: 4rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

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

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Trust Bar */
.trust-bar {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.trust-label {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Split Container (Main Layout Pattern) */
.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

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

.split-content {
    flex: 1;
    padding: 4rem;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

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

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

.split-reverse .split-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

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

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #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-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.35rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.service-price {
    padding: 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.service-card .btn-service {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
}

/* Testimonials Split */
.testimonials-split {
    background-color: #ffffff;
}

.testimonials-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.testimonial-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-style: italic;
    color: #34495e;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

/* Why Us Section */
.why-us {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
}

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

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

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

.why-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.why-item p {
    line-height: 1.8;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    background-color: #34495e;
    color: #ffffff;
}

.split-dark .split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.process-steps {
    margin-top: 2rem;
}

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

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

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.form-container-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    margin-top: 2rem;
}

.benefit-item {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: #27ae60;
    font-weight: 600;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.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.875rem;
    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: #3498db;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-note {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: -0.5rem;
}

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

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

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

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.cta-emphasis {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0;
}

.cta-final-button {
    background-color: #ffffff;
    color: #e74c3c;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
}

.cta-final-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-column p {
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
}

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

.sticky-cta button {
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta button:hover {
    background-color: #c0392b;
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(231, 76, 60, 0.5);
}

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

.split-header .header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.header-text {
    flex: 1;
    padding: 4rem;
}

.header-text h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.header-text p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.header-image {
    flex: 1;
    overflow: hidden;
}

.header-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Services Detailed */
.services-detailed {
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 0;
}

.service-detail:nth-child(even) {
    background-color: #f8f9fa;
}

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

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-tag {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #34495e;
}

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

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

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

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    color: #2c3e50;
    font-weight: 500;
}

/* Guarantees */
.guarantees {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.guarantees-container h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.guarantee-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    text-align: center;
}

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

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

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

/* CTA Services */
.cta-services {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

/* About Page Styles */
.about-hero {
    background-color: #ffffff;
}

.split-hero .intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

.story-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.story-image {
    margin-top: 2rem;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
}

.values-split {
    background-color: #ffffff;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #3498db;
}

.value-item p {
    line-height: 1.7;
    color: #34495e;
}

.numbers-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.numbers-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.number-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.number-label {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.number-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.team-section {
    background-color: #ffffff;
}

.team-cta {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #e8f4f8;
    border-radius: 8px;
}

.team-cta p {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.commitment-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.commitment-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.commitment-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

.commitment-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.brands-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
}

.brands-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.brands-intro {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.brand-item {
    padding: 0.75rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 30px;
    font-weight: 600;
    color: #34495e;
}

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

.final-cta-about {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

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

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

.contact-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-main {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.split-contact {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.info-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

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

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-details p {
    color: #7f8c8d;
    line-height: 1.6;
}

.quick-info,
.response-time {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.quick-info h3,
.response-time h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-list {
    list-style: none;
    margin: 1rem 0;
}

.info-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.info-note {
    margin-top: 1rem;
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.95rem;
}

.response-time p {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-form-side {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-form-side h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.faq-contact {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.faq-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

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

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

.alternative-contact {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

.alternative-content p {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.note-text {
    color: #7f8c8d;
    font-style: italic;
}

/* Thanks Page */
.thanks-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
    min-height: 70vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
}

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

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

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

.thanks-service-info {
    background-color: #e8f4f8;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}

.thanks-service-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-service-info p {
    color: #34495e;
    margin-bottom: 0.5rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

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

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thanks-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.thanks-contact {
    background-color: #fff3cd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.thanks-contact p {
    color: #34495e;
}

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

.thanks-tip {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    margin-top: 2rem;
}

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

.thanks-tip p {
    color: #34495e;
    margin-bottom: 1rem;
}

.thanks-tip ul {
    list-style: none;
    margin-left: 0;
}

.thanks-tip ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

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

/* Legal Pages */
.legal-page {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    min-height: 70vh;
}

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

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

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

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

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

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

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

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

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

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

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

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

.cookie-table td {
    color: #34495e;
}

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

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

    .hero-text,
    .split-content,
    .header-text,
    .form-info,
    .form-wrapper,
    .contact-info-side,
    .contact-form-side {
        padding: 2rem;
    }

    .hero-image img,
    .split-image img,
    .header-image img {
        height: 400px;
    }

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

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
    }

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

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

    .hero-text h1,
    .header-text h1 {
        font-size: 2rem;
    }

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

    .trust-container {
        flex-direction: column;
        gap: 1rem;
    }

    .service-card,
    .why-item,
    .guarantee-item,
    .number-card,
    .commitment-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .services-header h2,
    .why-container h2,
    .final-cta-content h2 {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-container,
    .legal-container {
        padding: 2rem;
    }

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

    .footer-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-text,
    .split-content,
    .header-text {
        padding: 1.5rem;
    }

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

    .services-preview,
    .why-us,
    .form-section {
        padding: 3rem 1rem;
    }

    .form-wrapper,
    .contact-form-side {
        padding: 2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-service,
    .btn-submit,
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}
