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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --sidebar-width: 280px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

.ad-notice {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
    position: sticky;
    top: 0;
    z-index: 100;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 30px;
    width: var(--sidebar-width);
    height: calc(100vh - 30px);
    background: var(--bg-white);
    border-right: 1px solid var(--border-color);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    z-index: 50;
}

.brand-logo h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 48px;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 12px;
}

.nav-links a {
    display: block;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 500;
}

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

.nav-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-footer a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.main-content {
    margin-left: var(--sidebar-width);
    padding-top: 30px;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--text-dark);
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    max-width: 800px;
    padding: 0 24px;
}

.hero-overlay-text h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-overlay-text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.intro-cards {
    padding: 80px 60px;
    background: var(--bg-white);
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    overflow: hidden;
}

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

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.feature-card p {
    margin: 0 24px 24px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.value-proposition {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    background: var(--bg-light);
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.content-block p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.image-block {
    flex: 1;
    background: var(--bg-light);
}

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

.services-preview {
    padding: 80px 60px;
    background: var(--bg-white);
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

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

.service-card {
    flex: 1 1 260px;
    max-width: 320px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

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

.contact-form-section {
    padding: 80px 60px;
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px 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 textarea {
    resize: vertical;
}

#serviceDisplay {
    margin-bottom: 24px;
    padding: 16px;
    background: #eff6ff;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

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

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

.trust-indicators {
    padding: 80px 60px;
    background: var(--bg-white);
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

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

.testimonial-card .author {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.disclaimer-section {
    padding: 60px;
    background: #fef3c7;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #92400e;
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 60px 24px;
    margin-left: var(--sidebar-width);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 14px;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 200;
    padding: 24px;
}

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

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

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

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

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

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

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

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

.cookie-reject:hover {
    background: var(--border-color);
}

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

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

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

.services-detailed {
    padding: 60px 60px 80px;
    background: var(--bg-light);
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-image {
    flex: 1;
    background: var(--bg-light);
}

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

.service-info {
    flex: 1;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
}

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

.service-pricing {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
}

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

.cta-section {
    padding: 80px 60px;
    background: var(--primary-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

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

.cta-button-large {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.about-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--text-dark);
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.about-intro {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: var(--bg-white);
}

.about-intro h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-intro p {
    font-size: 20px;
}

.story-section {
    padding: 80px 60px;
    background: var(--bg-white);
}

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

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.story-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.values-grid {
    padding: 80px 60px;
    background: var(--bg-light);
}

.values-grid h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 260px;
    max-width: 300px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    background: var(--bg-white);
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
}

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

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

.team-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.expertise-item {
    flex: 1 1 240px;
    max-width: 280px;
    background: var(--bg-white);
    padding: 28px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
}

.expertise-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.expertise-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.mission-statement {
    padding: 80px 60px;
    background: var(--bg-white);
}

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

.mission-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.mission-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.stat-card {
    flex: 1 1 200px;
    max-width: 240px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.contact-info-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 60px 80px;
    background: var(--bg-light);
}

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

.contact-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-address,
.contact-email,
.contact-hours {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-image {
    flex: 1;
}

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

.map-section {
    padding: 80px 60px;
    background: var(--bg-white);
}

.map-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.map-info {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.directions {
    flex: 1;
}

.directions h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 24px;
    color: var(--text-dark);
}

.directions h3:first-child {
    margin-top: 0;
}

.directions p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.map-placeholder {
    flex: 1;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.additional-info {
    padding: 80px 60px;
    background: var(--bg-light);
}

.additional-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.info-item {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.thanks-container {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
    background: var(--bg-light);
}

.thanks-content {
    flex: 2;
    background: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

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

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
}

.service-confirmation {
    margin-bottom: 32px;
    padding: 24px;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.selected-service-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

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

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

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

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

.button-secondary:hover {
    background: var(--border-color);
}

.thanks-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.sidebar-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    text-align: center;
}

.hours-info {
    font-size: 14px;
    font-style: italic;
}

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

.resource-links li {
    margin-bottom: 8px;
}

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

.resource-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background: var(--bg-white);
}

.legal-document h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-document h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-document h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-document p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-document li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 24px;
}

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

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 1024px) {
    :root {
        --sidebar-width: 0px;
    }

    .sidebar-nav {
        transform: translateX(-100%);
    }

    .main-content,
    .site-footer {
        margin-left: 0;
    }

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

    .value-proposition,
    .approach-section,
    .contact-info-section,
    .service-detail-card,
    .map-info,
    .thanks-container {
        flex-direction: column;
    }

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

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

    .intro-cards,
    .value-proposition,
    .services-preview,
    .contact-form-section,
    .trust-indicators,
    .services-detailed,
    .story-section,
    .values-grid,
    .approach-section,
    .team-section,
    .mission-statement,
    .stats-section,
    .contact-info-section,
    .map-section,
    .additional-info,
    .thanks-container,
    .legal-document {
        padding: 40px 24px;
    }

    .page-header,
    .contact-header {
        padding: 60px 24px 30px;
    }

    .service-detail-card {
        padding: 32px 24px;
    }

    .form-container {
        padding: 32px 24px;
    }
}
