* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

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

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#cookie-accept {
    background-color: #27ae60;
    color: white;
}

#cookie-accept:hover {
    background-color: #229954;
}

#cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

#cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.header-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.nav-primary {
    display: flex;
    gap: 30px;
}

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

.nav-primary a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a5568;
}

.cta-hero {
    display: inline-block;
    padding: 16px 35px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-image-right {
    flex: 1;
    background-color: #34495e;
    position: relative;
    overflow: hidden;
}

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

.intro-offset {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.intro-offset h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-offset p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-showcase {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.price-tag {
    padding: 0 25px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
}

.inquiry-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.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;
    border: 1px solid #d0d5dd;
    border-radius: 5px;
    font-size: 15px;
    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;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.trust-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.trust-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.testimonial-item {
    margin-bottom: 50px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.process-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.process-step {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.cta-final {
    padding: 100px 40px;
    background-color: #3498db;
    text-align: center;
}

.container-center {
    max-width: 800px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ecf0f1;
    transform: scale(1.05);
}

.footer-main {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.footer-section p,
.footer-section a {
    display: block;
    font-size: 14px;
    line-height: 2;
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #2c3e50;
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.about-hero {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #ecf0f1;
}

.about-content {
    padding: 100px 40px;
    background-color: #ffffff;
}

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.contact-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    min-height: 400px;
}

.legal-page {
    padding: 100px 40px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a5568;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.thanks-content .selected-service {
    font-weight: 600;
    color: #2c3e50;
    font-size: 20px;
    margin: 30px 0;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 35px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.thanks-content a:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

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

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

    .process-step {
        flex: 1 1 100%;
    }

    .nav-primary {
        width: 100%;
        justify-content: center;
    }

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