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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

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

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

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

.hero-card {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    color: #7f8c8d;
}

.hero-image {
    flex: 1;
    background-color: #ecf0f1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.story-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.story-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.cards-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.insight-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.insight-card img {
    width: 100%;
    height: 250px;
    display: block;
    background-color: #ecf0f1;
}

.insight-card h3 {
    font-size: 22px;
    margin: 20px 25px 15px;
    color: #2c3e50;
}

.insight-card p {
    margin: 0 25px 25px;
    color: #666;
    font-size: 16px;
}

.testimonials-section {
    background-color: #ffffff;
    padding: 80px 20px;
    margin: 60px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
    font-style: italic;
}

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

.benefits-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.benefit-card p {
    color: #666;
    font-size: 16px;
}

.services-preview {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    display: block;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 30px 20px;
    color: #666;
    font-size: 16px;
}

.service-card .price {
    display: block;
    margin: 0 30px 30px;
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
}

.cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 80px 20px;
    margin: 60px 0;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    background-color: #ffffff;
    color: #e74c3c;
    padding: 16px 45px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.form-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c0392b;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

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

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #e74c3c;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #c0392b;
}

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

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

.about-header,
.services-header,
.contact-header {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #ffffff;
}

.about-header h1,
.services-header h1,
.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-header p,
.services-header p,
.contact-header p {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-card.reverse {
    flex-direction: row-reverse;
}

.about-card img {
    width: 50%;
    display: block;
    background-color: #ecf0f1;
}

.about-text {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.value-card p {
    color: #666;
    font-size: 16px;
}

.services-main {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.service-info ul {
    margin-bottom: 30px;
    padding-left: 25px;
}

.service-info li {
    margin-bottom: 10px;
    color: #666;
    font-size: 16px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
}

.contact-main {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.contact-cards {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #e74c3c;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-map-card {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-additional h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.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: #555;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

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

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-details p {
    font-size: 16px;
    color: #555;
}

#serviceConfirmation {
    font-weight: 600;
    color: #e74c3c;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.button-primary,
.button-secondary {
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: #e74c3c;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #c0392b;
}

.button-secondary {
    background-color: #ffffff;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

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

.next-steps {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

.step-card p {
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-card,
    .about-card,
    .service-detail-card,
    .contact-cards {
        flex-direction: column;
    }

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

    .about-card img,
    .service-image {
        width: 100%;
        height: 300px;
    }

    .cards-grid,
    .testimonial-cards,
    .services-cards,
    .benefits-grid,
    .values-grid,
    .steps-grid {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
    }

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