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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f7d;
}

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

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    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;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.hero-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f5 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #2c5f7d;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c5f7d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #234a61;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,95,125,0.3);
}

.hero-image {
    flex: 1;
    background-color: #d6e4ec;
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8fafb;
    padding: 50px;
    border-radius: 12px;
    border-left: 5px solid #2c5f7d;
}

.intro-card h2 {
    font-size: 2rem;
    color: #2c5f7d;
    margin-bottom: 25px;
}

.intro-card p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: #2c5f7d;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.service-image {
    background-color: #d6e4ec;
    height: 280px;
    overflow: hidden;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #2c5f7d;
    margin-bottom: 18px;
}

.service-content p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-price {
    font-size: 1.8rem;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 35px;
    background-color: #2c5f7d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #234a61;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44,95,125,0.3);
}

.values-section {
    padding: 80px 20px;
    background-color: #2c5f7d;
    color: white;
}

.values-content h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #2c5f7d;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 25px);
    background-color: #f8fafb;
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f7d;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8f0f5 0%, #f5f7fa 100%);
}

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

.form-card h2 {
    font-size: 2.2rem;
    color: #2c5f7d;
    margin-bottom: 15px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #546e7a;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39,174,96,0.3);
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

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

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

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

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

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

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