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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d7ab8;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

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

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
}

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

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

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

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.features-dark {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem 0;
}

.features-dark h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.services-preview {
    padding: 5rem 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-showcase {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--primary-color);
}

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

.btn-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.trust-content > div:first-child {
    flex: 1.2;
    min-width: 300px;
}

.trust-content h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.trust-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
}

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

.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2d7ab8 0%, #1a4d7a 100%);
    color: var(--white);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.final-cta {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.125rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.3s;
}

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

.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer-footer {
    font-size: 0.75rem;
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.page-header {
    padding: 3rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.services-detailed {
    padding: 4rem 0;
}

.service-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
}

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

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

.service-details h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-details ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-details ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.pricing-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.price-description {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-service {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

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

.guarantee-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.guarantee-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.guarantee-item p {
    color: var(--text-light);
}

.about-story {
    padding: 4rem 0;
    background: var(--white);
}

.story-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-light);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 2rem;
    object-fit: cover;
    background-color: var(--bg-light);
}

.values-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
}

.team-section {
    padding: 4rem 0;
    background: var(--white);
}

.team-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.team-info img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
    background-color: var(--bg-light);
}

.team-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.team-details ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.team-details p {
    color: var(--text-light);
    margin-top: 1rem;
}

.process-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

.statistics-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.statistics-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.philosophy-section {
    padding: 4rem 0;
    background: var(--white);
}

.philosophy-section h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.philosophy-section p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-content {
    padding: 4rem 0;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-info-block h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

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

.note-text {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-details {
    padding: 4rem 0;
    background: var(--bg-light);
}

.location-details h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.location-details p {
    color: var(--text-light);
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.directions-info,
.visit-note {
    margin: 2rem 0;
}

.directions-info h3,
.visit-note h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.directions-info ul {
    padding-left: 1.5rem;
}

.directions-info ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.areas-served {
    padding: 4rem 0;
    background: var(--white);
}

.areas-served h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.areas-served > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.areas-list {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.area-column {
    flex: 1;
    min-width: 250px;
}

.area-column h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column ul li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.thanks-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

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

.next-steps h2 {
    font-size: 1.875rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.step-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.step-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.step-info p:first-child {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.0625rem;
}

.service-reminder {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.service-reminder h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.preparation-tips {
    padding: 4rem 0;
    background: var(--white);
}

.preparation-tips h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.tip-card {
    flex: 1;
    min-width: 240px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.tip-card h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

.legal-page {
    padding: 4rem 0;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.updated-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.legal-content strong {
    color: var(--text-dark);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookies-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-light);
}

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

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-block {
        flex-direction: column;
    }

    .service-block.reverse {
        flex-direction: column;
    }

    .cookies-table {
        font-size: 0.875rem;
    }

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

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

    .section-intro h2,
    .page-header h1 {
        font-size: 1.5rem;
    }
}