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

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

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

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

.hero-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-card-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e8ecef;
}

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

.hero-card-content {
    text-align: center;
    padding: 0 40px;
}

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

.hero-card-content p {
    font-size: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.intro-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.intro-card {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

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

.intro-card p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-grid {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8ecef;
}

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-content p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-card {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.insight-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    min-width: 400px;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-content p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 18px;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-form-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

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

.form-card > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.disclaimer-box {
    background-color: #fff3cd;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ffc107;
}

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

.disclaimer-box p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

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

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.btn-cookie-alt {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

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

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #e8ecef;
}

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

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

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

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

.team-section > p {
    text-align: center;
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-card {
    text-align: center;
    width: 280px;
}

.team-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #e8ecef;
}

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

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

.team-card p {
    font-size: 16px;
    color: #7f8c8d;
}

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

.mission-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

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

.mission-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 25px;
}

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

.service-detail-content ul li {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 10px;
}

.service-price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.contact-layout {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
}

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

.contact-card p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

.map-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.map-placeholder {
    background-color: #e8ecef;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #7f8c8d;
}

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

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

.contact-additional p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.contact-additional a {
    color: #3498db;
    text-decoration: none;
}

.contact-additional a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-card {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.thanks-card p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.service-selected {
    background-color: #d4edda;
    padding: 15px;
    border-radius: 6px;
    color: #155724;
    margin-bottom: 30px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.next-steps {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

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

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

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

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.legal-page p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

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

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

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

    .service-card {
        width: 100%;
    }

    .insight-layout,
    .about-layout,
    .service-detail-layout {
        flex-direction: column;
    }

    .insight-image,
    .about-image,
    .service-detail-image {
        min-width: 100%;
    }

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

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