* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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: 10px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #3498db;
    color: white;
}

.btn-cookie-accept:hover {
    background: #2980b9;
}

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

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

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

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

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

.nav-primary {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.ad-label {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-overlay {
    position: relative;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.intro-cards {
    padding: 80px 20px;
    background: white;
}

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

.card-intro {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.card-intro:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-intro img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.card-content {
    padding: 30px;
}

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

.card-content p {
    color: #576574;
    line-height: 1.7;
}

.problem-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.problem-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.problem-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.services-showcase {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.container-services h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #576574;
    margin-bottom: 50px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

.service-icon img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dfe6e9;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px 16px;
    color: #576574;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    padding: 0 24px 16px;
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.btn-service-select {
    margin: 0 24px 24px;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonials-section {
    padding: 80px 20px;
    background: white;
}

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.testimonial-author {
    font-weight: 600;
    color: #576574;
    font-size: 14px;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
}

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

.container-form h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

.form-subtitle {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.selected-service-banner {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: none;
    align-items: center;
    justify-content: space-between;
}

.selected-service-banner.active {
    display: flex;
}

.btn-clear-service {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-clear-service:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.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 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #2980b9;
}

.disclaimer-section {
    padding: 40px 20px;
    background: #ecf0f1;
}

.container-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    color: #576574;
    line-height: 1.6;
}

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

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 24px;
}

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

.thanks-container p {
    font-size: 18px;
    color: #576574;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-back-home {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #2980b9;
}

.about-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.about-section {
    margin-bottom: 60px;
}

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

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #3498db;
}

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

.value-card p {
    color: #576574;
    line-height: 1.6;
}

.contact-hero {
    padding: 80px 20px;
    background: #3498db;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
}

.contact-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info-card p {
    color: #576574;
    line-height: 1.7;
}

.services-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.service-detail-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-card h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-detail-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #576574;
    margin-bottom: 16px;
}

.service-detail-card ul {
    margin: 20px 0;
    padding-left: 24px;
}

.service-detail-card li {
    margin-bottom: 10px;
    color: #576574;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #576574;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 24px;
}

.legal-page li {
    margin-bottom: 10px;
    color: #576574;
    line-height: 1.7;
}

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

    .hero-text p {
        font-size: 16px;
    }

    .container-cards,
    .service-cards-grid,
    .testimonial-cards,
    .problem-grid {
        flex-direction: column;
    }

    .nav-primary {
        gap: 15px;
    }

    .container-header {
        flex-direction: column;
        gap: 20px;
    }
}