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

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

.hero-card {
    margin-top: 20px;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #e8f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(46, 134, 193, 0.85));
    padding: 60px 40px;
    max-width: 700px;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    line-height: 1.7;
}

.intro-cards {
    padding: 80px 0;
    background-color: #f7f9fb;
}

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.intro-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #34495e;
}

.intro-card p {
    color: #555;
    line-height: 1.8;
}

.intro-card.highlight {
    background-color: #3498db;
    color: #fff;
}

.intro-card.highlight h3 {
    color: #fff;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #fff;
}

.services-preview {
    padding: 80px 0;
}

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

.card-grid-services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #d5e8f0;
}

.service-content {
    padding: 30px;
}

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

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

.price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    margin-top: 15px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

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

.form-card {
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

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

.form-card > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27ae60;
    color: #fff;
    padding: 16px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: #2c3e50;
}

.info-section {
    padding: 60px 0;
    background-color: #34495e;
    color: #fff;
}

.info-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card p {
    line-height: 1.7;
    margin-bottom: 10px;
}

.link-inline {
    color: #3498db;
    text-decoration: underline;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #5dade2;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #fff;
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    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;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.page-header {
    background-color: #3498db;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
}

.services-detailed {
    padding: 60px 0;
}

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #e0e8f0;
}

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

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

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

.service-detail-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

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

.price-badge {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-info {
    padding: 60px 0;
    background-color: #f7f9fb;
}

.info-box {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

.info-box p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.info-box ul {
    margin-top: 15px;
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.about-content {
    padding: 60px 0;
}

.about-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e5ecf0;
}

.values-section {
    margin-bottom: 80px;
}

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

.value-card {
    background-color: #f8f9fa;
    padding: 30px;
}

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

.value-card p {
    line-height: 1.7;
    color: #555;
}

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

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: #555;
}

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

.team-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #d8e3e7;
}

.team-card h3 {
    font-size: 22px;
    margin: 20px 20px 5px;
    color: #2c3e50;
}

.team-role {
    font-size: 14px;
    color: #3498db;
    font-weight: 600;
    margin: 0 20px 15px;
}

.team-card p {
    padding: 0 20px 20px;
    line-height: 1.7;
    color: #555;
}

.mission-statement {
    background-color: #ecf0f1;
    padding: 50px;
}

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

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

.contact-section {
    padding: 60px 0;
}

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

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

.detail-item p {
    line-height: 1.7;
    color: #555;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    margin-top: 30px;
}

.contact-note p {
    line-height: 1.7;
    color: #555;
}

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

.map-placeholder {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-color: #d5e0e8;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.map-overlay {
    background-color: rgba(52, 152, 219, 0.9);
    color: #fff;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 600;
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

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

.service-confirmation {
    background-color: #ecf0f1;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #34495e;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

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

.legal-content {
    padding: 60px 0;
}

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

.updated-date {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-style: italic;
}

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

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

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #34495e;
}

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

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
