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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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;
    min-width: 250px;
    margin: 0;
}

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

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

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    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;
    min-height: 70px;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 4px 10px;
    border-radius: 4px;
}

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

.nav-menu li a {
    color: #2c3e50;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #27ae60;
}

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

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-hero {
    padding: 15px 40px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s;
    cursor: pointer;
}

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

.content-flow {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.content-flow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-flow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.citation {
    color: #27ae60;
    text-decoration: underline;
}

.citation:hover {
    color: #229954;
}

.insight-block {
    padding: 80px 20px;
    background-color: #fff;
}

.insight-block h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.insight-block p {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
    color: #555;
}

.insight-block img {
    margin: 0 auto;
}

.testimonial-inline {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 24px;
    font-style: italic;
    color: #2c3e50;
    text-align: center;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: #fff;
}

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

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

.benefit-card {
    max-width: 350px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-card h4 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    margin: 0 20px 20px;
    color: #555;
}

.trust-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.trust-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.trust-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

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

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

.service-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    max-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h4 {
    font-size: 20px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #555;
}

.service-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #27ae60;
    margin: 0 20px 15px;
}

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-wrapper {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

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

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c3e50;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #856404;
    text-align: center;
    line-height: 1.8;
}

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

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

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

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

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

.footer-col ul li a:hover {
    color: #27ae60;
}

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

.references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.references h6 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.references p {
    font-size: 12px;
    color: #bdc3c7;
    line-height: 1.8;
}

.references a {
    color: #27ae60;
}

.references a:hover {
    text-decoration: underline;
}

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

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    text-align: center;
    color: #fff;
}

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

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

.about-intro {
    padding: 80px 20px;
    background-color: #fff;
}

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

.split-layout .split-text {
    flex: 1;
}

.split-layout .split-image {
    flex: 1;
}

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

.split-layout p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

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

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

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

.value-item {
    max-width: 350px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-item p {
    font-size: 16px;
    color: #555;
}

.team-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.team-section p {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
    color: #555;
}

.team-section img {
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.mission-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.services-full {
    padding: 80px 20px;
    background-color: #fff;
}

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

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

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
}

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

.service-info h4 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #27ae60;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.service-info ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.service-info ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

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

.btn-action {
    display: inline-block;
    padding: 12px 30px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
}

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

.cta-services {
    padding: 80px 20px;
    background-color: #ecf0f1;
    text-align: center;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1a252f;
}

.contact-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.info-block p {
    font-size: 16px;
    color: #555;
}

.contact-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.contact-additional {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.contact-additional p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 18px;
    color: #555;
}

.contact-additional a {
    color: #27ae60;
    text-decoration: underline;
}

.contact-additional a:hover {
    color: #229954;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.thanks-info {
    margin-bottom: 30px;
}

.thanks-info strong {
    color: #27ae60;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
}

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

.legal-page {
    padding: 80px 20px;
    background-color: #fff;
}

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

.update-date {
    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: #27ae60;
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

.legal-page a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #229954;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .split-section,
    .split-layout,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

    .benefits-grid,
    .values-grid,
    .service-layout {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-container {
        position: relative;
    }
}