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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.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;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background-color: #234d24;
}

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

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

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

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #f8f9fa;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2c5f2d;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 48px;
    gap: 60px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    max-width: 560px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    max-width: 600px;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #234d24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.trust-section {
    padding: 60px 48px;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-split {
    padding: 80px 48px;
    background-color: #f8f9fa;
}

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

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

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 24px 20px;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #2c5f2d;
    margin: 0 24px 24px;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.cta-inline a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-inline a:hover {
    color: #234d24;
    border-bottom-color: #234d24;
}

.process-section {
    display: flex;
    align-items: center;
    padding: 80px 48px;
    gap: 60px;
    background-color: #ffffff;
}

.process-left {
    flex: 1;
    background-color: #e8e8e8;
}

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

.process-right {
    flex: 1;
    max-width: 560px;
}

.process-right h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.process-step {
    margin-bottom: 28px;
}

.process-step h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #2c5f2d;
}

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

.testimonial-section {
    padding: 80px 48px;
    background-color: #2c3e50;
}

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

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 24px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

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

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

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

.form-container > p {
    text-align: center;
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #234d24;
}

.footer {
    background-color: #1a1a1a;
    color: #bdc3c7;
    padding: 60px 48px 24px;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 48px 60px;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content-center p {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 48px;
    background-color: #ffffff;
}

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

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

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

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

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

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

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.team-image {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e8e8e8;
}

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

.approach-section {
    padding: 80px 48px;
    background-color: #f8f9fa;
}

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

.approach-content {
    flex: 1.5;
}

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

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

.cta-text {
    display: inline-block;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-bottom: 2px solid #2c5f2d;
    padding-bottom: 4px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.cta-text:hover {
    color: #234d24;
    border-bottom-color: #234d24;
}

.approach-stats {
    flex: 1;
}

.stat-block {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-num {
    font-size: 38px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 15px;
    color: #7f8c8d;
}

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

.cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-content .cta-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

.cta-content .cta-primary:hover {
    background-color: #f0f0f0;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 48px;
}

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

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

.service-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-details {
    flex: 1;
}

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

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

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

.service-features li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
    border-top: 2px solid #e8e8e8;
}

.price-label {
    font-size: 13px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.price-unit {
    font-size: 14px;
    color: #7f8c8d;
}

.pricing-notes {
    padding: 80px 48px;
    background-color: #f8f9fa;
}

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

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

.notes-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.note-item {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.note-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

.contact-section {
    padding: 60px 48px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

.contact-detail {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
}

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

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

.response-section {
    padding: 60px 48px;
    background-color: #f8f9fa;
}

.response-content {
    max-width: 800px;
    margin: 0 auto;
}

.response-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 100px 48px;
    background-color: #f8f9fa;
    min-height: 500px;
}

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

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

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

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 6px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.thanks-details p:last-child {
    margin-bottom: 0;
}

#service-confirmation {
    font-weight: 600;
    color: #2c5f2d;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234d24;
}

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

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

.next-steps {
    padding: 80px 48px;
    background-color: #ffffff;
}

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

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

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 240px;
    text-align: center;
    padding: 32px 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

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

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

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

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

.legal-container ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2c5f2d;
    text-decoration: none;
    border-bottom: 1px solid #2c5f2d;
}

.legal-container a:hover {
    color: #234d24;
    border-bottom-color: #234d24;
}

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

.cookie-table thead {
    background-color: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

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

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 16px;
        font-size: 14px;
    }

    .ad-disclosure {
        font-size: 10px;
    }

    .hero-split,
    .process-section,
    .story-container,
    .approach-split,
    .contact-container {
        flex-direction: column;
    }

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

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

    .trust-container {
        flex-direction: column;
        gap: 28px;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }
}