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

:root {
    --primary-color: #2d5a3f;
    --secondary-color: #7a9d88;
    --accent-color: #c39a5f;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #faf9f7;
    --background-white: #ffffff;
    --border-color: #e0ddd9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    border-top: 2px solid var(--border-color);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #1f4030;
}

.cookie-btn.reject {
    background-color: #e0ddd9;
    color: var(--text-dark);
}

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

.main-nav {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--background-light);
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
}

.hero-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

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

.hero-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image-column {
    flex: 1;
    min-width: 300px;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--background-light);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1f4030;
    color: white;
}

.intro-columns {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.narrow-column {
    flex: 2;
    min-width: 300px;
}

.narrow-column p {
    margin-bottom: 1.5rem;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
}

.info-card img {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    background-color: #e8e6e2;
    object-fit: cover;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.services-grid-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: var(--background-light);
}

.services-grid-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--background-light);
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    padding: 0 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-select-btn {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    width: calc(100% - 3rem);
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select-btn:hover {
    background-color: #1f4030;
}

.contact-form-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 2rem;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.inquiry-form {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
}

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

.form-group input[readonly] {
    background-color: #f5f4f2;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1f4030;
}

.trust-indicators {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.trust-item p {
    font-size: 0.95rem;
}

.main-footer {
    background-color: var(--text-dark);
    color: #d0cec9;
    margin-top: 4rem;
    padding: 3rem 2rem 1rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d0cec9;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.page-header {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

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

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

.service-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.service-features h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--background-light);
    border-radius: 6px;
}

.price-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: var(--background-light);
    object-fit: cover;
}

.process-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--background-light);
    border-radius: 8px;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1f4030;
    color: white;
}

.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin: 3rem 0;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-item p {
    line-height: 1.8;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-dark);
    user-select: all;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--background-light);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 90, 63, 0.9);
    color: white;
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
}

.map-overlay p {
    margin: 0;
    font-size: 0.95rem;
}

.service-areas {
    margin-bottom: 4rem;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-areas > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.area-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 6px;
}

.area-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.area-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-cta {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
    margin-bottom: 4rem;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero {
    margin: 3rem 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: var(--background-light);
}

.about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 3rem 2rem 2rem;
}

.about-hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-hero-overlay p {
    font-size: 1.2rem;
}

.about-story {
    margin: 4rem 0;
}

.story-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

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

.story-text p {
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--background-light);
    object-fit: cover;
}

.expertise-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.expertise-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.expertise-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 6px;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.expertise-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.timeline-section {
    margin: 4rem 0;
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.values-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: white;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.value-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-block p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.thanks-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thanks-content {
    margin: 4rem 0;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 120px;
    height: 120px;
}

.thanks-content h1 {
    margin-bottom: 2rem;
}

.thanks-message {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.thanks-info {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
    text-align: left;
}

.thanks-info ul {
    margin-top: 1rem;
}

.thanks-info li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.thanks-actions {
    margin: 3rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #1f4030;
    color: white;
}

.btn-secondary {
    background-color: var(--background-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

.additional-info {
    margin: 4rem 0;
}

.additional-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-card-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.info-card-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-header {
    text-align: center;
    margin: 3rem 0 2rem;
}

.legal-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.legal-content {
    margin: 0 0 4rem;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

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

.cookie-table th {
    background-color: var(--background-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

.cookie-table td {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .about-hero-overlay h1 {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        width: auto;
    }

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

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }

    .process-step {
        min-width: 100%;
    }
}
