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

:root {
    --primary-color: #2d5f3f;
    --primary-dark: #1a3a26;
    --primary-light: #3d7a52;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.ad-notice {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 32px;
    z-index: 999;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

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

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

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.info-cards {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.info-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.services-showcase {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.services-showcase h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-cards-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.featured {
    flex-basis: 100%;
    max-width: none;
    display: flex;
}

.service-card.featured .service-image {
    flex: 1;
}

.service-card.featured .service-content {
    flex: 1;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--border-color);
}

.service-card.featured .service-image {
    height: auto;
}

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

.service-content {
    padding: 28px;
}

.service-badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features span {
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-medium);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: var(--primary-dark);
}

.cta-section {
    text-align: center;
    margin-top: 48px;
}

.cta-section p {
    color: var(--text-medium);
    margin-bottom: 24px;
    font-size: 15px;
}

.secondary-cta {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.secondary-cta:hover {
    background-color: var(--primary-color);
    color: white;
}

.process-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 200px;
    padding: 32px 24px;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.process-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.process-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-card p {
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

.form-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.form-intro {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 40px 20px;
}

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

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 24px 40px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

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

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: var(--primary-dark);
}

.cookie-btn.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
}

.about-content {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.about-text-main {
    flex: 1.5;
}

.about-text-main h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text-main h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-text-main p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image-feature {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-section {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.team-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.team-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.team-card h4 {
    font-size: 22px;
    margin: 24px 0 8px;
    padding: 0 20px;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 0 20px;
}

.team-card p {
    color: var(--text-medium);
    line-height: 1.7;
    padding: 0 20px 28px;
}

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

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

.approach-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-section {
    padding: 80px 40px;
    background-color: var(--primary-color);
    color: white;
}

.stats-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.cta-section-alt {
    padding: 80px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-section-alt p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 40px;
    background-color: var(--bg-white);
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.badge-popular {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
}

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

.service-pricing-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.select-service-btn:hover {
    background-color: var(--primary-dark);
}

.additional-services {
    padding: 60px 40px;
    background-color: var(--bg-light);
}

.additional-services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.additional-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.additional-card {
    flex: 1;
    min-width: 240px;
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.additional-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.additional-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 14px;
}

.additional-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-main {
    padding: 60px 40px;
    background-color: var(--bg-white);
}

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

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

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-section > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.contact-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.contact-note h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-note p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-replacement {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

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

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

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

.faq-item {
    flex: 1;
    min-width: 340px;
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service {
    color: var(--text-dark);
    font-size: 16px;
}

.selected-service strong {
    color: var(--primary-color);
}

.next-steps {
    text-align: left;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    color: var(--text-medium);
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 16px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

.btn-primary {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-reminder {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.contact-reminder p {
    color: var(--text-medium);
    margin-bottom: 12px;
}

.email-display {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-page {
    padding: 60px 40px 80px;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-page p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page ul li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-medium);
}

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

    .service-card.featured {
        flex-direction: column;
    }

    .service-card.featured .service-image {
        height: 300px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-container {
        padding: 16px 20px;
    }

    .hero-section {
        padding: 40px 20px;
    }

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

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

    .cards-grid {
        flex-direction: column;
    }

    .service-cards-layout {
        flex-direction: column;
    }

    .service-card {
        max-width: none;
    }

    .form-row {
        flex-direction: column;
    }

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

    .stats-grid {
        gap: 32px;
    }

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

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

    .container,
    .container-wide,
    .container-narrow {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .service-price {
        font-size: 24px;
    }

    .price-display {
        font-size: 28px;
    }

    .service-pricing-info {
        flex-direction: column;
        align-items: flex-start;
    }
}
