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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    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-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    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: #3d6449;
}

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

.btn-reject:hover {
    background-color: #555555;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

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

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

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

.hero-card {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.hero-grid {
    display: flex;
    flex-direction: column;
}

.hero-card-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    background-color: #d4c4b0;
}

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

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

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

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

.intro-cards {
    padding: 80px 0;
}

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

.intro-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 12px;
}

.intro-card-primary {
    background-color: #f5f1ed;
}

.intro-card-primary h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.intro-card-secondary {
    padding: 0;
    overflow: hidden;
    background-color: #d4c4b0;
}

.intro-card-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-heading {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: left;
    color: #2c2c2c;
}

.section-heading-centered {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d4c4b0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #4a7c59;
    margin-bottom: 20px;
}

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

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

.philosophy-section {
    padding: 80px 0;
}

.philosophy-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #d4c4b0;
}

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

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.process-cards {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.process-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.process-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonial-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #f5f1ed;
    border-radius: 12px;
    border-left: 4px solid #4a7c59;
}

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

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

.cta-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.cta-card-large h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

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

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

.form-section {
    padding: 80px 0;
}

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

.form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c2c2c;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

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

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

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

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.editorial-main {
    background-color: #ffffff;
}

.story-article {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-editorial img {
    width: 100%;
    height: 100%;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.intro-section {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.inline-image-block {
    margin: 60px 0;
    border-radius: 12px;
    overflow: hidden;
}

.inline-image-block img {
    width: 100%;
    height: auto;
}

.image-caption {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.insight-section {
    margin: 60px 0;
}

.insight-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-preview {
    margin: 80px 0;
}

.services-preview h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.services-preview > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

.service-cards-editorial {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-cards-editorial .service-card {
    flex: 1;
    min-width: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.card-image-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
}

.service-cards-editorial .service-card h3 {
    font-size: 20px;
    padding: 20px 20px 10px;
    color: #2c2c2c;
}

.service-cards-editorial .service-card p {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

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

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

.trust-section {
    margin: 60px 0;
}

.trust-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f1ed;
    border-left: 4px solid #4a7c59;
    border-radius: 6px;
}

.testimonial-inline blockquote {
    margin: 0;
}

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

.testimonial-inline footer {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.cta-inline {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 12px;
}

.cta-inline h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.cta-inline p {
    font-size: 17px;
    color: #555;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.form-section > p {
    margin-bottom: 30px;
    color: #666;
}

.form-section form {
    margin-top: 30px;
}

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

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    margin: 40px 0;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

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

.about-hero {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-hero p {
    font-size: 20px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f5f1ed;
    border-radius: 12px;
}

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

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

.contact-hero {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.contact-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

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

.legal-page {
    padding: 80px 0;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
}

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

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

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

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

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

.thanks-container {
    padding: 120px 0;
    text-align: center;
}

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #f8f8f8;
    border-radius: 12px;
}

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #4a7c59;
}

.thanks-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.thanks-card .btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-card .btn:hover {
    background-color: #3d6449;
}

.page-header {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.page-header .subtitle {
    font-size: 20px;
    color: #666;
}

.story-block {
    margin: 60px 0;
}

.story-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.values-section {
    margin: 60px 0;
}

.values-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.value-item {
    margin-bottom: 40px;
}

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

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

.team-approach,
.commitment-section {
    margin: 60px 0;
}

.team-approach h2,
.commitment-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-detailed {
    margin: 60px 0;
}

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

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

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.price-display {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f1ed;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

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

.contact-info-section {
    margin: 60px 0;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

.contact-detail {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.contact-note {
    padding: 30px;
    background-color: #f5f1ed;
    border-radius: 12px;
    margin-top: 40px;
}

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

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

.contact-note a {
    color: #4a7c59;
    text-decoration: underline;
}

.visit-info {
    margin: 60px 0;
}

.visit-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.directions {
    margin-top: 30px;
}

.directions h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.directions ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.directions ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.directions ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a7c59;
}

.parking-note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
    padding: 16px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.business-model-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 12px;
}

.business-model-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.business-model-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #4a7c59;
    text-align: center;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #f5f1ed;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.thanks-info ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.selected-service-display {
    padding: 20px;
    background-color: #fff3cd;
    border-left: 4px solid #4a7c59;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

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

.btn-secondary {
    background-color: #6c6c6c;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #555555;
}

.thanks-sidebar {
    max-width: 300px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 12px;
}

.thanks-sidebar h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.thanks-sidebar p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.thanks-sidebar ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.thanks-sidebar ul li {
    margin-bottom: 10px;
}

.thanks-sidebar ul li a {
    color: #4a7c59;
    text-decoration: none;
    font-size: 15px;
}

.thanks-sidebar ul li a:hover {
    text-decoration: underline;
}

.contact-reminder {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #d0d0d0;
}

.contact-reminder p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .header-content,
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .section-heading,
    .section-heading-centered {
        font-size: 28px;
    }

    .service-card {
        max-width: 100%;
    }

    .philosophy-layout {
        flex-direction: column;
    }

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