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

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

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

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

.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;
    font-size: 14px;
}

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

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

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

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

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

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

.main-nav {
    background-color: #34495e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

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

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

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

.ad-label {
    font-size: 11px;
    color: #bdc3c7;
    padding: 4px 10px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 0 20px 40px;
}

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

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

.hero-image {
    width: 100%;
    max-width: 1400px;
}

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

.intro-cards {
    padding: 60px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.card-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.info-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #2c3e50;
}

.info-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 15px;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.service-image {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

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

.service-details {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

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

.service-details p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 26px;
    font-weight: bold;
    color: #27ae60;
    margin: 20px 0;
}

.cta-button {
    background-color: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 30px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    background-color: #27ae60;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.benefit-card h4 {
    font-size: 19px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

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

.story-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

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

.value-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.team-intro {
    text-align: center;
    color: #666;
    font-size: 17px;
    margin-bottom: 50px;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
}

.certifications {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

.cta-about {
    padding: 80px 0;
    background-color: #3498db;
    text-align: center;
    color: white;
}

.cta-about h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

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

.cta-link {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #229954;
}

.services-detailed {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin: 25px 0;
}

.service-guarantee {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.guarantee-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.guarantee-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.guarantee-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.guarantee-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.cta-box p {
    color: #555;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button-large {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #2980b9;
}

.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.faq-item {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-box h1 {
    font-size: 34px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 30px;
}

.thanks-details p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

#selectedServiceDisplay {
    font-weight: 600;
    color: #2c3e50;
    font-size: 17px;
}

.thanks-next {
    text-align: left;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.thanks-next h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-next ul {
    margin-left: 25px;
}

.thanks-next ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.updated-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

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

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

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

.legal-content ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .card-grid,
    .services-cards,
    .benefits-grid,
    .values-grid,
    .team-stats,
    .guarantee-grid,
    .faq-grid {
        flex-direction: column;
    }

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

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

    .thanks-box {
        padding: 30px 20px;
    }

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