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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.container-full {
    max-width: 100%;
    padding: 60px 40px;
}

.container-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.main-header {
    background-color: #1a472a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: #e8f4ed;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #c8e6d7;
    padding: 5px 12px;
    border: 1px solid #3a6848;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #2d5a3d;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.85) 0%, rgba(45, 90, 61, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 40px;
    color: #ffffff;
    text-align: center;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.5;
    color: #e8f4ed;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #5cb85c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(92, 184, 92, 0.3);
}

.cta-button:hover {
    background-color: #4cae4c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(92, 184, 92, 0.4);
}

.intro-section {
    background-color: #f9fdfb;
    padding: 80px 0;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a472a;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a5f5a;
}

.mission-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.mission-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a472a;
}

.mission-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #556b66;
}

.mission-list {
    list-style: none;
    margin-top: 30px;
}

.mission-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #4a5f5a;
}

.mission-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5cb85c;
    font-weight: 700;
}

.mission-image {
    flex: 1;
    background-color: #e8f4ed;
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-preview {
    background-color: #f0f8f4;
    padding: 100px 0;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a472a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #556b66;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

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

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8f4ed;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a472a;
}

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

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 20px;
}

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

.select-service:hover {
    background-color: #4cae4c;
}

.testimonials-section {
    background-color: #2d5a3d;
    padding: 100px 0;
    color: #ffffff;
}

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

.testimonial {
    margin-bottom: 50px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 4px solid #5cb85c;
}

.quote {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #e8f4ed;
}

.author {
    font-size: 15px;
    color: #a8d5ba;
    font-weight: 600;
}

.cta-section {
    background-color: #1a472a;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #5cb85c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(92, 184, 92, 0.3);
}

.cta-button-large:hover {
    background-color: #4cae4c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 184, 92, 0.4);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal-content {
    background-color: #ffffff;
    margin: 50px auto;
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #888;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a472a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0e4d7;
    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: #5cb85c;
}

.form-group input[readonly] {
    background-color: #f0f8f4;
    color: #556b66;
}

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

.submit-btn:hover {
    background-color: #4cae4c;
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

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

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

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

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

.footer-section a:hover {
    color: #5cb85c;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.7;
    color: #999999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #333;
    margin: 0;
}

.cookie-content a {
    color: #5cb85c;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #5cb85c;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #4cae4c;
}

.btn-reject {
    background-color: #e8e8e8;
    color: #333;
}

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

.page-header {
    background-color: #f0f8f4;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a472a;
}

.lead {
    font-size: 20px;
    color: #556b66;
}

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

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.story-text {
    flex: 1;
}

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

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #556b66;
    line-height: 1.7;
}

.values-section {
    background-color: #f9fdfb;
    padding: 100px 0;
}

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

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a472a;
}

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

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

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a472a;
}

.team-approach p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #556b66;
    line-height: 1.7;
}

.expertise-section {
    background-color: #2d5a3d;
    padding: 100px 0;
    color: #ffffff;
}

.expertise-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.expertise-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid #5cb85c;
}

.expertise-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

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

.impact-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.impact-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a472a;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #5cb85c;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #556b66;
}

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

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

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

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

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

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2d5a3d;
}

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

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #556b66;
    line-height: 1.6;
}

.price-info {
    font-size: 22px;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 24px;
}

.process-section {
    background-color: #f9fdfb;
    padding: 100px 0;
}

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

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

.process-step {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #5cb85c;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a472a;
}

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

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a472a;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #556b66;
    line-height: 1.7;
}

.contact-note {
    padding: 20px;
    background-color: #f0f8f4;
    border-radius: 6px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 14px;
    color: #556b66;
    margin: 0;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a472a;
}

.location-section {
    background-color: #f9fdfb;
    padding: 80px 0;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a472a;
}

.location-section p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #556b66;
}

.location-details h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #2d5a3d;
}

.location-details ul {
    margin-bottom: 30px;
    padding-left: 24px;
}

.location-details ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #556b66;
    line-height: 1.6;
}

.parking-note {
    padding: 20px;
    background-color: #fff4e0;
    border-left: 4px solid #f0ad4e;
    border-radius: 4px;
    margin-top: 20px;
}

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

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a472a;
}

.thanks-message {
    font-size: 18px;
    color: #556b66;
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f4ed;
    border-radius: 6px;
    margin-bottom: 50px;
    font-size: 16px;
    color: #2d5a3d;
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a472a;
    text-align: center;
}

.next-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.next-step .step-number {
    flex-shrink: 0;
}

.next-step p {
    font-size: 16px;
    color: #556b66;
    margin: 0;
    padding-top: 12px;
}

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

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

.btn-primary {
    background-color: #5cb85c;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e8f4ed;
    color: #1a472a;
    border: 1px solid #c8e6d7;
}

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

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

.info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a472a;
}

.info-section p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #556b66;
}

.info-links {
    display: flex;
    gap: 30px;
}

.info-link {
    flex: 1;
    padding: 30px;
    background-color: #f0f8f4;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link:hover {
    background-color: #e8f4ed;
    transform: translateY(-3px);
}

.info-link h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a472a;
}

.info-link p {
    font-size: 15px;
    color: #556b66;
    margin: 0;
}

.legal-page {
    background-color: #ffffff;
    min-height: 600px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a472a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2d5a3d;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #3a6848;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #4a5f5a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #556b66;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 24px;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #556b66;
    line-height: 1.6;
}

.legal-page a {
    color: #5cb85c;
    text-decoration: none;
}

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

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

.cookie-table h3 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2d5a3d;
}

@media (max-width: 1024px) {
    .mission-grid,
    .story-grid,
    .contact-grid {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

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

    .service-card,
    .value-card,
    .expertise-item,
    .process-step {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .info-links {
        flex-direction: column;
    }
}