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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #7fb685;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #7fb685;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #7fb685;
}

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

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

.nav-links a:hover {
    color: #7fb685;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #ecf0f1;
    padding: 6px 12px;
    margin-left: 20px;
}

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-layer {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(127, 182, 133, 0.7) 0%, rgba(44, 62, 80, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 24px;
    color: #ffffff;
    font-weight: 300;
    max-width: 700px;
}

.intro-story {
    padding: 120px 40px;
    background-color: #f8faf8;
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 600;
}

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

.story-visual {
    flex: 1;
    background-color: #e8f1e8;
}

.story-visual img {
    width: 100%;
    display: block;
}

.ref-link {
    color: #7fb685;
    text-decoration: none;
    font-weight: 600;
}

.ref-link:hover {
    text-decoration: underline;
}

.problem-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    font-size: 48px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.problem-content p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #555;
}

.insight-reveal {
    padding: 120px 40px;
    background-color: #f0f4f0;
}

.insight-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #dfe7df;
}

.insight-image img {
    width: 100%;
    display: block;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.benefits-grid {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

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

.benefits-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 320px;
    background-color: #f8faf8;
}

.benefit-card img {
    width: 100%;
    display: block;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    padding: 0 25px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 25px 25px;
    color: #555;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #7fb685;
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c3e50;
    font-style: italic;
}

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

.services-preview {
    padding: 120px 40px;
    background-color: #f8faf8;
}

.services-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 15px;
    color: #555;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #7fb685;
    margin: 20px 25px;
}

.btn-select {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #7fb685;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #6a9d71;
}

.form-section {
    padding: 120px 40px;
    background-color: #2c3e50;
}

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

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

.form-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ecf0f1;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #ecf0f1;
    background-color: #ffffff;
    color: #2c3e50;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #7fb685;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

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

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

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

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

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #7fb685;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #7fb685;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: #bdc3c7;
    text-decoration: none;
}

.references-list a:hover {
    color: #7fb685;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #7fb685;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    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 {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero {
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-hero-overlay {
    background: rgba(127, 182, 133, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero h1 {
    font-size: 64px;
    color: #ffffff;
    font-weight: 300;
}

.about-story {
    padding: 120px 40px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    background-color: #e8f1e8;
}

.about-image img {
    width: 100%;
    display: block;
}

.values-section {
    padding: 120px 40px;
    background-color: #f8faf8;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 40px;
    background-color: #ffffff;
}

.value-item h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #7fb685;
}

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

.team-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.team-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.team-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.services-intro {
    padding: 100px 40px;
    background-color: #ffffff;
    margin-top: 80px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

.service-detail {
    max-width: 1300px;
    margin: 0 auto 100px;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    display: block;
}

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

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

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #7fb685;
}

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

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
    padding-left: 25px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #7fb685;
    font-size: 20px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #7fb685;
    margin: 30px 0 20px;
}

.contact-section {
    padding: 100px 40px;
    background-color: #ffffff;
    margin-top: 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-info > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #7fb685;
}

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

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #f8faf8;
    border-left: 4px solid #7fb685;
}

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

.contact-visual {
    flex: 1;
    background-color: #e8f1e8;
}

.contact-visual img {
    width: 100%;
    display: block;
}

.map-section {
    padding: 80px 40px;
    background-color: #f8faf8;
}

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

.map-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: #f8faf8;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
}

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

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #7fb685;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6a9d71;
}

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

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

.legal-page {
    padding: 140px 40px 80px;
    background-color: #ffffff;
}

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

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

.legal-intro {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #7fb685;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.legal-container a {
    color: #7fb685;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #7fb685;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

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

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

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .story-wrapper,
    .insight-wrapper,
    .about-container,
    .service-detail,
    .contact-container {
        flex-direction: column;
    }

    .testimonial-flow {
        flex-direction: column;
    }

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

    .section-title,
    .section-title-center {
        font-size: 36px;
    }
}