* {
    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: #2c3e50;
    background-color: #f8f9fa;
}

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #4a7c59;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    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: 24px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.hero-card {
    margin: 0;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0,0,0,0.45);
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    margin: 0 20px;
}

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

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    background-color: #4a7c59;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #3d6849;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74,124,89,0.3);
}

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

.card-row {
    display: flex;
    gap: 32px;
}

.info-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 36px 28px;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.service-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-preview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.service-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s;
}

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

.service-card img {
    width: 100%;
    display: block;
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    color: #5a6c7d;
    margin-bottom: 16px;
}

.price {
    display: inline-block;
    background-color: #e8f5e9;
    color: #4a7c59;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}

.cta-center {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.approach-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-text p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 12px;
}

.booking-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.booking-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
}

.booking-card h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.booking-card > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 36px;
}

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

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

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

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

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

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

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

.testimonials-row {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-row h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonial-cards {
    display: flex;
    gap: 32px;
}

.testimonial {
    flex: 1;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 10px;
    border-top: 4px solid #4a7c59;
}

.testimonial p {
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 16px;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.page-header {
    background-color: #4a7c59;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.services-detailed {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.service-detail {
    margin-bottom: 80px;
}

.service-content-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-content-layout.reverse {
    flex-direction: row-reverse;
}

.service-image-block {
    flex: 1;
}

.service-image-block img {
    width: 100%;
    border-radius: 8px;
}

.service-text-block {
    flex: 1;
}

.service-text-block h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.service-text-block p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

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

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

.service-cta {
    padding: 60px 0;
    background-color: #ffffff;
}

.cta-card {
    text-align: center;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-card p {
    color: #5a6c7d;
    margin-bottom: 28px;
    font-size: 18px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 36px;
    background-color: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.about-hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-intro-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
}

.principles-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.principles-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.principle-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.principle-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #4a7c59;
}

.principle-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.team-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.team-member {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.member-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.member-info p {
    color: #5a6c7d;
    line-height: 1.8;
}

.approach-detail {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.approach-columns {
    display: flex;
    gap: 60px;
}

.approach-col {
    flex: 1;
}

.approach-col h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-col p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.credentials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.credentials-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 50px;
    font-size: 18px;
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.credential-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 10px;
}

.credential-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #4a7c59;
}

.credential-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.commitment-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.commitment-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.commitment-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-header {
    background-color: #4a7c59;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.95;
}

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

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4a7c59;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.hours-note {
    margin-top: 12px;
    font-size: 14px;
    font-style: italic;
}

.contact-map-block {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.access-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.access-info h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.access-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.access-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #4a7c59;
}

.access-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.directions-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.directions-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.direction-method {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 10px;
}

.direction-method h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #4a7c59;
}

.direction-method p {
    color: #5a6c7d;
    line-height: 1.7;
}

.inquiry-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.inquiry-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.inquiry-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.inquiry-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.inquiry-card a {
    color: #4a7c59;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 12px;
}

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

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

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 50px;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 28px;
    color: #2c3e50;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.step-item p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-top: 8px;
}

.service-reminder {
    background-color: #e8f5e9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.contact-reminder {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-reminder a {
    color: #4a7c59;
    font-weight: 600;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.legal-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 16px;
    color: #4a7c59;
}

.legal-section p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section strong {
    color: #2c3e50;
}

.legal-section a {
    color: #4a7c59;
    font-weight: 600;
}

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

.legal-table th {
    background-color: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e0e6ed;
}

.legal-table td {
    padding: 12px;
    color: #5a6c7d;
    border-bottom: 1px solid #e0e6ed;
}

@media (max-width: 1024px) {
    .card-row,
    .service-grid,
    .testimonial-cards,
    .footer-container {
        flex-direction: column;
    }

    .approach-layout,
    .contact-layout,
    .about-intro-layout,
    .approach-columns {
        flex-direction: column;
    }

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

    .team-member {
        flex-direction: column;
    }

    .member-image {
        flex: none;
        width: 100%;
        height: 400px;
    }
}

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .booking-card {
        padding: 30px;
    }

    .thanks-content {
        padding: 40px 30px;
    }
}