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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d2d2d;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --card-shadow: 0 4px 12px rgba(0,0,0,0.08);
    --hover-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #ffffff;
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    padding: 80px 40px;
    background: var(--light-bg);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-card {
    flex: 1;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.hero-text-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-text-card p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #e55a2b;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.hero-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: #e9ecef;
}

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

.intro-section {
    padding: 100px 40px;
    background: #ffffff;
}

.intro-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 60px;
    border-radius: 12px;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-grid {
    padding: 100px 40px;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    width: calc(33.333% - 24px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e9ecef;
}

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

.card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.select-service {
    background: var(--primary-color);
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1e4620;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.benefits-section {
    padding: 100px 40px;
    background: #ffffff;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.benefit-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.benefit-card a:hover {
    text-decoration: underline;
}

.form-section {
    padding: 100px 40px;
    background: var(--primary-color);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--hover-shadow);
}

.form-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background: var(--light-bg);
}

.submit-button {
    background: var(--accent-color);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

.submit-button:hover {
    background: #e55a2b;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.testimonials-section {
    padding: 100px 40px;
    background: var(--light-bg);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.main-footer {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.reference-text {
    font-size: 14px;
    color: #999999;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.6;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept {
    background: var(--primary-color);
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1e4620;
}

.cookie-reject {
    background: var(--light-bg);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background: #e0e0e0;
}

.page-header {
    padding: 80px 40px 60px;
    background: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    color: var(--primary-color);
}

.about-content {
    padding: 60px 40px 100px;
}

.about-card-large {
    max-width: 1400px;
    margin: 0 auto 80px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    gap: 0;
}

.about-text {
    flex: 1;
    padding: 60px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: #e9ecef;
}

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

.philosophy-section {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.philosophy-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.philosophy-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
}

.philosophy-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.philosophy-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.team-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.team-image {
    width: 100%;
    height: 320px;
    background: #e9ecef;
}

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

.team-info {
    padding: 32px;
}

.team-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.team-role {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.team-info p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.facilities-section {
    max-width: 1400px;
    margin: 0 auto 80px;
    background: var(--light-bg);
    padding: 60px;
    border-radius: 12px;
}

.facilities-section h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.facilities-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.facilities-list {
    list-style: none;
    padding-left: 0;
}

.facilities-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
}

.facilities-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.values-section {
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-color);
}

.values-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.value-item {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin-bottom: 60px;
    display: flex;
    gap: 0;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background: #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--primary-color);
}

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

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

.comparison-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 40px;
}

.comparison-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.comparison-table {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.comparison-column {
    flex: 1;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.comparison-column.featured {
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.comparison-column h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.comparison-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 32px;
}

.comparison-features {
    list-style: none;
    padding-left: 0;
}

.comparison-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.comparison-features li.included::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.comparison-features li.not-included {
    color: #999999;
}

.comparison-features li.not-included::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #cccccc;
    font-weight: 700;
    font-size: 20px;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

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

.contact-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.contact-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item .time {
    color: var(--text-light);
}

.hours-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
    font-style: italic;
}

.location-card {
    background: var(--light-bg);
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.location-card h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.location-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.location-text {
    flex: 1;
}

.location-text p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.7;
}

.location-text h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--primary-color);
}

.transport-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.transport-list li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.6;
}

.location-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef;
}

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

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

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

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

.faq-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.faq-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.faq-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.cta-card {
    background: var(--primary-color);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-button-large {
    display: inline-block;
    background: var(--accent-color);
    color: #ffffff;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background: #e55a2b;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.thanks-section {
    padding: 100px 40px;
    background: var(--light-bg);
}

.thanks-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.selected-service-display {
    margin-bottom: 40px;
}

.selected-service-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next-steps {
    margin-top: 60px;
    margin-bottom: 60px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.step-item {
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.button-primary,
.button-secondary {
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.button-primary {
    background: var(--accent-color);
    color: #ffffff;
}

.button-primary:hover {
    background: #e55a2b;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.button-secondary {
    background: var(--light-bg);
    color: var(--text-dark);
}

.button-secondary:hover {
    background: #e0e0e0;
}

.additional-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

.info-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-card p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.legal-section ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-type {
    margin-bottom: 32px;
}

.cookie-type h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cookie-type p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-update {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.legal-update p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 16px);
    }

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

    .about-card-large {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .hero-text-card {
        padding: 40px 32px;
    }

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

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

    .service-card {
        width: 100%;
    }

    .form-card {
        padding: 40px 32px;
    }

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

    .comparison-table {
        flex-direction: column;
    }
}