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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.layout-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: #2d5f3e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    overflow-y: auto;
}

.sidebar-content {
    flex: 1;
    padding: 40px 30px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

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

.nav-link {
    color: #e8f2ec;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 6px;
    transition: background-color 0.2s, color 0.2s;
    display: block;
    font-size: 16px;
}

.nav-link:hover {
    background-color: #3d7f5e;
    color: #ffffff;
}

.nav-link.active {
    background-color: #ffffff;
    color: #2d5f3e;
    font-weight: 600;
}

.sidebar-info {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b8d4c3;
    margin-bottom: 8px;
}

.info-text {
    font-size: 15px;
    color: #ffffff;
}

.sidebar-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ad-disclosure {
    font-size: 11px;
    color: #b8d4c3;
    line-height: 1.4;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    width: calc(100% - 280px);
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #1a3a2a;
}

.hero-image {
    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), rgba(0, 0, 0, 0.3));
    padding: 60px 80px;
    color: #ffffff;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    color: #e8f2ec;
    max-width: 700px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d5f3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #3d7f5e;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 80px 60px;
    background-color: #ffffff;
}

.intro-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a2a;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
}

.services-showcase {
    padding: 60px 80px 80px;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a3a2a;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-image-wrapper {
    height: 240px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a3a2a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2d5f3e;
}

.how-it-works {
    padding: 80px;
    background-color: #ffffff;
}

.how-content h3 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a3a2a;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.step-text h5 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a3a2a;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.form-section {
    padding: 80px;
    background-color: #f0f4f2;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a3a2a;
}

.form-intro p {
    font-size: 16px;
    color: #6b7280;
}

.valuation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-button {
    padding: 16px;
    background-color: #2d5f3e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #3d7f5e;
    transform: translateY(-2px);
}

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

.benefits-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a2a;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-block {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-block h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5f3e;
}

.benefit-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.site-footer {
    background-color: #1a3a2a;
    color: #e8f2ec;
    padding: 60px 80px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

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

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

.footer-column p,
.footer-column a {
    font-size: 15px;
    line-height: 1.8;
    color: #b8d4c3;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8d4c3;
    margin-bottom: 15px;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #8ea899;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 280px;
    right: 0;
    background-color: #1a3a2a;
    color: #ffffff;
    padding: 25px 80px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.cookie-content a {
    color: #8ec3a4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cookie-btn.accept:hover {
    background-color: #3d7f5e;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
    transform: translateY(-2px);
}

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

.page-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a3a2a;
}

.page-intro {
    font-size: 19px;
    color: #6b7280;
}

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

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

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

.detail-image-container {
    flex: 1;
    max-width: 500px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content {
    flex: 1;
}

.detail-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a3a2a;
}

.price-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: #e8f2ec;
    color: #2d5f3e;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 20px;
}

.detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

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

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d5f3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.service-cta:hover {
    background-color: #3d7f5e;
    transform: translateY(-2px);
}

.pricing-factors {
    padding: 60px 80px 80px;
    background-color: #f8f9fa;
}

.pricing-factors h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a2a;
}

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

.factor-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2d5f3e;
}

.factor-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a3a2a;
}

.factor-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.about-story {
    padding: 40px 80px 80px;
    background-color: #ffffff;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a3a2a;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    max-width: 500px;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.values-section h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a3a2a;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5f3e;
}

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

.process-section {
    padding: 60px 80px;
    background-color: #ffffff;
}

.process-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a3a2a;
}

.process-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.process-image {
    flex: 1;
    max-width: 500px;
}

.team-section {
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.team-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a2a;
}

.team-intro {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

.team-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.coverage-section {
    padding: 60px 80px;
    background-color: #ffffff;
}

.coverage-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a3a2a;
}

.coverage-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 900px;
}

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

.cta-section h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #e8f2ec;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #2d5f3e;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button-large:hover {
    background-color: #e8f2ec;
    transform: translateY(-2px);
}

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.contact-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 5px;
}

.email-display {
    color: #2d5f3e;
    font-weight: 600;
}

.contact-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 15px;
}

.faq-section {
    padding: 60px 80px 80px;
    background-color: #f8f9fa;
}

.faq-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a3a2a;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a3a2a;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-cta {
    padding: 60px 80px;
    background-color: #ffffff;
    text-align: center;
}

.contact-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a3a2a;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #6b7280;
}

.thanks-section {
    padding: 100px 80px;
    background-color: #ffffff;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5f3e;
}

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

.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h3 {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a3a2a;
}

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

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

.step-num {
    width: 50px;
    height: 50px;
    background-color: #e8f2ec;
    color: #2d5f3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a3a2a;
}

.step-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 8px;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #2d5f3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #3d7f5e;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background-color: #e5e7eb;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #d1d5db;
    transform: translateY(-2px);
}

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

.legal-page h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #1a3a2a;
}

.legal-intro {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a3a2a;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2d5f3e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2d5f3e;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }

    .main-content {
        margin-left: 240px;
        width: calc(100% - 240px);
    }

    .hero-overlay,
    .intro-section,
    .services-showcase,
    .how-it-works,
    .form-section,
    .benefits-section,
    .site-footer,
    .page-header,
    .services-detailed,
    .pricing-factors,
    .about-story,
    .values-section,
    .process-section,
    .team-section,
    .coverage-section,
    .cta-section,
    .contact-info-section,
    .faq-section,
    .contact-cta,
    .thanks-section,
    .legal-page {
        padding-left: 50px;
        padding-right: 50px;
    }

    .cookie-banner {
        left: 240px;
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .cookie-banner {
        left: 0;
    }

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

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

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

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

    .about-story,
    .process-content {
        flex-direction: column;
    }

    .benefit-block,
    .value-card,
    .contact-card {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

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

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