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

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

.header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-floating a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-floating a:hover,
.nav-floating a.active {
    color: #2c5f3e;
}

.hero-visual-overlay {
    position: relative;
    width: 100%;
}

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

.hero-content {
    text-align: center;
    color: #ffffff;
    padding: 40px;
    background: rgba(0, 0, 0, 0.45);
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 30px;
}

.story-intro {
    background-color: #f9fafb;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.narrow-column p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-image {
    flex: 1;
}

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

.insight-reveal {
    padding: 100px 40px;
    background-color: #f4f6f8;
}

.card-insight {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-insight h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.insight-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.insight-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f3e;
    margin-bottom: 15px;
}

.insight-item p {
    font-size: 16px;
    line-height: 1.6;
}

.citation {
    color: #2c5f3e;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.solution-intro {
    background-color: #ffffff;
}

.solution-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-building {
    padding: 80px 40px;
    background-color: #fef9f5;
}

.testimonial-inline {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.testimonial-inline blockquote {
    border-left: 4px solid #2c5f3e;
    padding-left: 30px;
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    color: #333;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.benefits-reveal {
    padding: 100px 40px;
    background-color: #ffffff;
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.benefit-offset-1 {
    margin-left: 0;
}

.benefit-offset-2 {
    margin-left: 80px;
}

.benefit-offset-3 {
    margin-left: 40px;
}

.benefit-card img {
    width: 100%;
    height: 300px;
}

.benefit-card h3 {
    font-size: 26px;
    margin: 30px 30px 15px 30px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 30px 30px 30px;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f4f6f8;
}

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

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #555;
}

.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-block {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-image {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    width: 100%;
    padding: 40px;
    color: #ffffff;
}

.service-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-select {
    background-color: #2c5f3e;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #1f4429;
}

.service-details {
    padding: 40px;
}

.service-details ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-details li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f3e;
    font-weight: bold;
    font-size: 18px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f3e;
    text-align: right;
}

.service-price span {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

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

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

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

.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 10px;
}

.service-selected-display {
    background: #e8f4f1;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #1a1a1a;
}

.btn-change {
    background: none;
    border: 1px solid #2c5f3e;
    color: #2c5f3e;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 15px;
    transition: all 0.3s;
}

.btn-change:hover {
    background: #2c5f3e;
    color: #ffffff;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    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: #2c5f3e;
}

.btn-submit {
    width: 100%;
    background-color: #2c5f3e;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-trust {
    padding: 80px 40px;
    background-color: #f4f6f8;
}

.trust-badges {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.badge-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background-color: #2c5f3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px auto;
}

.badge-item p {
    font-size: 15px;
    color: #333;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fef9f5;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

.references-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.references-list li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

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

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2c5f3e;
    color: #ffffff;
}

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

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

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

.page-hero {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.page-hero-small {
    padding: 80px 40px 40px 40px;
    background-color: #f4f6f8;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 40px;
    color: #1a1a1a;
}

.about-story {
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.mission-section {
    padding: 100px 40px;
    background-color: #f9fafb;
}

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    padding: 40px;
    border-radius: 10px;
}

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

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

.team-approach {
    background-color: #f4f6f8;
}

.team-approach h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c5f3e;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f4429;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f3e;
    border: 2px solid #2c5f3e;
    padding: 13px 38px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #2c5f3e;
    color: #ffffff;
}

.services-detail {
    padding: 60px 40px;
}

.intro-text-center {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.service-detailed-card {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-img-container {
    flex: 1;
}

.service-img-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.service-info {
    flex: 1;
}

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

.service-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f3e;
    font-size: 20px;
}

.service-price-large {
    font-size: 40px;
    font-weight: 700;
    color: #2c5f3e;
    margin-bottom: 20px;
}

.service-price-large span {
    font-size: 18px;
    font-weight: 400;
    color: #666;
}

.btn-select-large {
    background-color: #2c5f3e;
    color: #ffffff;
    border: none;
    padding: 14px 35px;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-large:hover {
    background-color: #1f4429;
}

.services-guarantee {
    padding: 60px 40px;
    background-color: #f9fafb;
}

.services-guarantee h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info {
    padding: 60px 40px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 60px auto;
    flex-wrap: wrap;
}

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

.contact-block h2 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

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

.email-text {
    color: #555;
    font-size: 15px;
}

.legal-notice {
    max-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 40px;
    background: #f9fafb;
    border-radius: 10px;
}

.legal-notice h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-notice p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.legal-links-section {
    max-width: 1100px;
    margin: 0 auto;
}

.legal-links-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-link-card {
    flex: 1;
    min-width: 240px;
    background: #f4f6f8;
    padding: 30px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.legal-link-card:hover {
    background: #e8ebed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-link-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f3e;
}

.legal-link-card p {
    font-size: 14px;
    color: #666;
}

.thanks-section {
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-service {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
}

.thanks-next {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

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

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

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #333;
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.legal-section a {
    color: #2c5f3e;
    text-decoration: none;
}

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

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

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

.cookie-table th {
    background-color: #f4f6f8;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .split-content {
        flex-direction: column;
    }

    .service-detailed-card {
        flex-direction: column;
    }

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

    .benefit-offset-1,
    .benefit-offset-2,
    .benefit-offset-3 {
        margin-left: 0;
    }

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

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

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

    .nav-floating {
        gap: 15px;
        font-size: 14px;
    }
}