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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.navbar {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #f5f5f5;
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 5px 12px;
    border-left: 1px solid #444;
    margin-left: 15px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 25px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    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;
    gap: 30px;
}

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

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6b4a;
}

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

.btn-reject:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

.hero-card {
    position: relative;
    margin-bottom: 0;
}

.hero-image-card {
    position: relative;
    height: 650px;
    overflow: hidden;
    background-color: #3a3a3a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 80px 40px 60px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 600px;
    line-height: 1.5;
    color: #e5e5e5;
}

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

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

.intro-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 2px;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.intro-card p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.intro-card.accent {
    background-color: #2c3e34;
    color: #e5e5e5;
}

.intro-card.accent h3 {
    color: #ffffff;
}

.intro-card.accent p {
    color: #d4d4d4;
}

.story-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.story-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 0 0 45%;
    background-color: #e5e5e5;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.problem-cards {
    padding: 90px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-align: left;
    line-height: 1.3;
}

.section-title-center {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: #5a5a5a;
    margin-top: -35px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-card {
    flex: 1;
    background-color: #fafafa;
    padding: 35px;
    border-left: 4px solid #4a7c59;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.problem-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.insight-section {
    padding: 90px 0;
    background-color: #2a2a2a;
    color: #e5e5e5;
}

.insight-card-large {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.3;
}

.insight-content p {
    font-size: 18px;
    margin-bottom: 22px;
    line-height: 1.8;
    color: #d4d4d4;
}

.insight-content blockquote {
    border-left: 4px solid #4a7c59;
    padding-left: 25px;
    margin: 35px 0;
    font-style: italic;
    font-size: 20px;
    color: #c4c4c4;
}

.insight-image {
    flex: 0 0 40%;
    background-color: #3a3a3a;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-preview {
    padding: 90px 0;
    background-color: #f9f9f9;
}

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

.service-card {
    flex: 0 0 calc(50% - 18px);
    background-color: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 280px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

.service-details {
    padding: 35px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.service-details p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 30px;
    background-color: #3d6b4a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2f5438;
}

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

.testimonial-card {
    background-color: #f5f5f5;
    padding: 45px;
    margin-bottom: 30px;
    border-left: 5px solid #4a7c59;
}

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

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

.cta-section {
    padding: 90px 0;
    background-color: #2c3e34;
}

.cta-card-large {
    text-align: center;
    padding: 60px 40px;
    color: #ffffff;
}

.cta-card-large h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-card-large p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #e5e5e5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #3d6b4a;
}

.form-section {
    padding: 90px 0;
    background-color: #f9f9f9;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-card > p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 35px;
    line-height: 1.6;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d4d4d4;
    border-radius: 3px;
    font-size: 15px;
    font-family: inherit;
    color: #2c2c2c;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
    background-color: #ffffff;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #3d6b4a;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background-color: #f5f5f5;
    border-left: 4px solid #8a6d3b;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.7;
}

.disclaimer-card strong {
    color: #2c2c2c;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.page-hero-small {
    padding: 80px 0 60px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.lead {
    font-size: 20px;
    color: #d4d4d4;
}

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

.content-card-layout {
    display: flex;
    gap: 60px;
}

.content-main {
    flex: 1;
}

.content-main h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    font-size: 17px;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.quote-card {
    background-color: #f5f5f5;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #4a7c59;
}

.quote-card blockquote {
    font-size: 20px;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.6;
}

.content-sidebar {
    flex: 0 0 320px;
}

.sidebar-card {
    background-color: #f9f9f9;
    padding: 30px;
    margin-bottom: 30px;
}

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

.sidebar-card p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 12px;
}

.value-list,
.simple-list {
    list-style: none;
    padding-left: 0;
}

.value-list li,
.simple-list li {
    font-size: 15px;
    color: #3a3a3a;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.value-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.team-showcase {
    padding: 80px 0;
    background-color: #f5f5f5;
}

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

.expertise-card {
    flex: 0 0 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-section-simple {
    padding: 80px 0;
    background-color: #2c3e34;
    text-align: center;
    color: #ffffff;
}

.cta-section-simple h2 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section-simple p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e5e5e5;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: flex-start;
}

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

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

.service-header {
    margin-bottom: 25px;
}

.service-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1a1a1a;
    line-height: 1.3;
}

.price-large {
    font-size: 26px;
    font-weight: 700;
    color: #4a7c59;
}

.service-intro {
    font-size: 18px;
    color: #3a3a3a;
    margin-bottom: 30px;
    line-height: 1.7;
}

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

.detail-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.detail-list li {
    font-size: 16px;
    color: #4a4a4a;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

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

.service-note {
    font-size: 15px;
    color: #5a5a5a;
    font-style: italic;
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 3px solid #d4d4d4;
}

.service-detail-image {
    flex: 0 0 40%;
    background-color: #e5e5e5;
}

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

.pricing-notes-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.pricing-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 3px;
}

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

.pricing-card p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

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

.contact-info-card {
    flex: 0 0 40%;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #2c2c2c;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-item .note {
    font-size: 14px;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 8px;
}

.contact-form-card {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 3px;
}

.contact-form-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-form-card > p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 30px;
}

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

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

.faq-card {
    flex: 0 0 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
}

.faq-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-card p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    text-align: center;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
}

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

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

.service-confirmation {
    background-color: #f5f5f5;
    padding: 20px;
    margin: 30px 0;
    border-radius: 3px;
    font-size: 16px;
    color: #2c2c2c;
}

.thanks-details {
    margin: 50px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

.btn-primary {
    background-color: #3d6b4a;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2f5438;
}

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

.btn-secondary:hover {
    background-color: #3d6b4a;
    color: #ffffff;
}

.thanks-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff9e6;
    border-left: 3px solid #8a6d3b;
    text-align: left;
}

.thanks-note p {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 18px;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #4a7c59;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #3d6b4a;
}

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

.cookie-table thead th {
    background-color: #f5f5f5;
    padding: 12px;
    text-align: left;
    font-size: 15px;
    color: #2c2c2c;
    border-bottom: 2px solid #d4d4d4;
}

.cookie-table tbody td {
    padding: 12px;
    font-size: 14px;
    color: #4a4a4a;
    border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .ad-disclosure {
        display: none;
    }

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

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

    .card-grid,
    .card-grid-three,
    .story-card,
    .insight-card-large,
    .content-card-layout,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .expertise-grid,
    .faq-grid {
        flex-direction: column;
    }

    .expertise-card,
    .faq-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}