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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.ad-disclosure {
    background-color: #c8102e;
    color: #ffffff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 1rem;
}

.cta-primary {
    display: inline-block;
    background-color: #c8102e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #a00d25;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-story {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.story-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.story-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-showcase {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-details ul {
    list-style: none;
    margin: 1rem 0;
}

.service-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.service-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c8102e;
    font-weight: bold;
}

.service-price {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c8102e;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.contact-form-section {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.main-form {
    background-color: #2a2a2a;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8102e;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #c8102e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.trust-points {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c8102e;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1.1rem;
    color: #4a5568;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 5% 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background-color: #c8102e;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #a00d25;
}

.btn-reject {
    background-color: #444;
    color: #ffffff;
}

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

.about-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 5rem 5%;
    text-align: center;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
}

.about-story-split {
    display: flex;
    max-width: 1200px;
    margin: 5rem auto;
    gap: 3rem;
    padding: 0 5%;
}

.story-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.story-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.philosophy-section {
    background-color: #f8f9fa;
    padding: 5rem 5%;
}

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

.philosophy-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.philosophy-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.philosophy-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.team-approach {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.approach-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.approach-text ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    font-size: 1.05rem;
}

.approach-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c8102e;
    font-weight: bold;
    font-size: 1.5rem;
}

.approach-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 5%;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.values-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.regional-focus {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.regional-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.regional-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

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

.area-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #c8102e;
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.area-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.services-intro {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 5rem 5%;
    text-align: center;
    color: #ffffff;
}

.services-intro h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-text {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 5rem 5%;
}

.service-detail-section.alt-layout {
    background-color: #f8f9fa;
}

.service-detail-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.price-badge {
    display: inline-block;
    background-color: #c8102e;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.detail-content h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.detail-content h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.include-item strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.include-item p {
    color: #4a5568;
    line-height: 1.7;
}

.process-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.process-list li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.duration-note,
.note-box,
.special-note,
.follow-up-note {
    background-color: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 4px solid #c8102e;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.materials-list {
    list-style: none;
    margin: 1rem 0;
}

.materials-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
}

.materials-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8102e;
    font-weight: bold;
}

.lighting-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.option-card {
    flex: 1 1 calc(50% - 0.75rem);
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.option-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.option-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

.detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.detail-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cta-services {
    background-color: #1a1a1a;
    padding: 4rem 5%;
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    background-color: #c8102e;
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.btn-large:hover {
    background-color: #a00d25;
}

.contact-page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 5%;
    text-align: center;
    color: #ffffff;
}

.contact-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-intro {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.contact-info-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.contact-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.detail-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.email-display {
    background-color: #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    font-family: monospace;
}

.hours-note,
.parking-note {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 0.5rem;
    font-style: italic;
}

.directions-info h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.directions-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.inquiry-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.inquiry-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map-info {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.map-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.map-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.2rem;
}

.thanks-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #28a745;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3rem;
    font-weight: bold;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: #4a5568;
}

.next-steps {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.8rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #c8102e;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #a00d25;
}

.btn-secondary {
    background-color: #444;
    color: #ffffff;
}

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

.legal-page {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.last-updated,
.legal-intro {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin: 2rem 0 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    padding-left: 2rem;
    margin: 1rem 0;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.7rem;
}

.no-link {
    color: #4a5568;
    text-decoration: none;
    cursor: text;
}

.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #e0e0e0;
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-split,
    .story-container,
    .service-card-split,
    .about-story-split,
    .approach-content,
    .regional-areas,
    .contact-grid,
    .service-detail-split {
        flex-direction: column;
    }

    .hero-left h1,
    .services-intro h1,
    .about-hero-content h1,
    .contact-page-hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .trust-points {
        flex-direction: column;
        gap: 2rem;
    }

    .philosophy-card,
    .option-card {
        flex: 1 1 100%;
    }

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