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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    margin: 0;
}

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

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

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

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

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

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

.ad-disclosure {
    background-color: #f5f5f5;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-links a:hover {
    color: #4a7c59;
}

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 60px;
    color: #ffffff;
}

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

.hero-overlay p {
    font-size: 22px;
    max-width: 600px;
    opacity: 0.95;
}

.story-intro {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

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

.story-lead {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #3c3c3c;
}

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #3c3c3c;
}

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

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

.insight-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.full-width-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.full-width-text p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.approach-section {
    padding: 90px 40px;
    background-color: #f4f4f4;
}

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

.approach-card {
    flex: 1.2;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.approach-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #3c3c3c;
}

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #2c2c2c;
}

.benefit-list li:before {
    content: "✓ ";
    color: #4a7c59;
    font-weight: 700;
    margin-right: 10px;
}

.approach-image {
    flex: 0.8;
    background-color: #d0d0d0;
}

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

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 35px;
    border-left: 4px solid #4a7c59;
}

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

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

.benefits-section {
    padding: 90px 40px;
    background-color: #fafafa;
}

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

.benefits-flow {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    margin-bottom: 50px;
}

.benefit-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #3c3c3c;
}

.inline-ref {
    color: #4a7c59;
    text-decoration: none;
    font-size: 14px;
    vertical-align: super;
}

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

.image-break {
    height: 60vh;
    overflow: hidden;
    background-color: #c0c0c0;
}

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

.services-preview {
    padding: 90px 40px;
    background-color: #ffffff;
}

.service-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

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

.service-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #3c3c3c;
}

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

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #d8d8d8;
}

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

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

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #4a7c59;
    margin: 20px 25px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #3d6949;
}

.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

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

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-intro {
    font-size: 16px;
    margin-bottom: 30px;
    color: #666;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

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

.reference-list {
    padding-left: 20px;
}

.reference-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3c3c3c;
}

.reference-list a {
    color: #4a7c59;
    text-decoration: none;
}

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

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

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

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

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

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

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

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

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

.footer-section ul a:hover {
    color: #4a7c59;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 40px;
    color: #ffffff;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

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

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

.values-section {
    padding: 90px 40px;
    background-color: #f9f9f9;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #3c3c3c;
}

.service-detail-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3c3c3c;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin: 25px 0;
}

.btn-service {
    padding: 14px 30px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #3d6949;
}

.process-section {
    padding: 90px 40px;
    background-color: #f9f9f9;
}

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

.process-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4a7c59;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #3c3c3c;
}

.contact-info-section {
    padding: 90px 40px;
    background-color: #ffffff;
}

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

.contact-info-card {
    background-color: #f9f9f9;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #3c3c3c;
}

.contact-note {
    background-color: #f4f4f4;
    padding: 35px;
    border-left: 4px solid #4a7c59;
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #3c3c3c;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
    min-height: 60vh;
}

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

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

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

.thanks-lead {
    font-size: 18px;
    margin-bottom: 30px;
    color: #3c3c3c;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-confirmation p {
    font-size: 16px;
    color: #2c2c2c;
    margin: 0;
}

.thanks-info {
    background-color: #ffffff;
    padding: 35px;
    margin: 40px 0;
    text-align: left;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

.thanks-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #3c3c3c;
}

.thanks-info ul {
    padding-left: 20px;
    margin-top: 15px;
}

.thanks-info ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #3c3c3c;
}

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

.btn-primary {
    padding: 14px 30px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #3d6949;
}

.btn-secondary {
    padding: 14px 30px;
    background-color: transparent;
    color: #4a7c59;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #4a7c59;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.legal-content {
    padding: 60px 40px 90px;
    background-color: #ffffff;
}

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

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

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

.legal-wrapper h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

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

.legal-wrapper ul {
    margin: 15px 0 20px 0;
    padding-left: 30px;
}

.legal-wrapper ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #3c3c3c;
}

.legal-wrapper a {
    color: #4a7c59;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .split-layout,
    .offset-layout,
    .service-detail {
        flex-direction: column;
    }

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

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

    .service-cards {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 20px;
    }

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

    .values-grid,
    .process-steps {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

    .contact-info-card {
        padding: 30px;
    }
}