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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-section {
    padding: 60px 5% 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

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

.hero-text-block {
    flex: 1;
    padding-left: 8%;
    transform: translateY(-20px);
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-text-block p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-block {
    flex: 1;
    position: relative;
    transform: translateX(30px) rotate(2deg);
}

.hero-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 20px 25px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

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

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.intro-asymmetric {
    display: flex;
    align-items: stretch;
    padding: 100px 5% 100px 0;
    background-color: var(--bg-white);
}

.intro-left {
    flex: 0 0 45%;
    background-color: var(--bg-light);
    overflow: hidden;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.intro-right-offset {
    flex: 1;
    padding: 60px 8% 60px 80px;
    transform: translateX(-40px);
    background-color: var(--bg-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.intro-right-offset h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-right-offset p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-grid-asymmetric {
    padding: 100px 5%;
    background-color: #fafafa;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 15%;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header-offset p {
    font-size: 18px;
    color: var(--text-light);
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.service-card.large-card {
    flex: 1 1 calc(50% - 15px);
}

.service-card.small-card {
    flex: 1 1 calc(25% - 23px);
}

.service-card.offset-top {
    transform: translateY(-30px);
}

.service-card.offset-bottom {
    transform: translateY(30px);
}

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

.card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.process-section {
    padding: 100px 5%;
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
}

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

.process-content {
    flex: 1.2;
    color: white;
}

.process-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    min-width: 60px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.process-image {
    flex: 0.8;
    transform: rotate(-3deg) translateY(20px);
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 15px 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.contact-form-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.form-wrapper-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 16px;
    color: var(--text-light);
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    border-left: 4px solid #4caf50;
}

.selected-service-info p {
    font-size: 15px;
    color: #2e7d32;
}

.selected-service-info.has-service {
    background-color: #e3f2fd;
    border-left-color: #2196f3;
}

.selected-service-info.has-service p {
    color: #1565c0;
    font-weight: 600;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover:not(:disabled) {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.about-preview {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.about-split {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    transform: translateX(40px);
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.link-subtle {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s;
}

.link-subtle:hover {
    border-bottom-color: var(--secondary-color);
}

.about-image-stack {
    flex: 0.8;
    transform: translateY(-40px) rotate(2deg);
}

.about-image-stack img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 15px 20px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.main-footer {
    background-color: #34495e;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-accept {
    background-color: #27ae60;
    color: white;
}

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

.about-hero,
.services-hero,
.contact-hero {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 20px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.story-section,
.experience-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.story-layout,
.experience-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.story-image,
.experience-image {
    flex: 0.8;
}

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

.story-text,
.experience-text {
    flex: 1;
}

.story-text h2,
.experience-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-text p,
.experience-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-section,
.approach-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.philosophy-content,
.approach-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2,
.approach-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-item p {
    font-size: 16px;
    color: var(--text-light);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.year {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.approach-item {
    background-color: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-color);
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 16px;
    color: var(--text-light);
}

.cta-about {
    padding: 80px 5%;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 50px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.service-detail-image {
    flex: 0.8;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-includes {
    margin-bottom: 30px;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

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

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.booking-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.booking-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.contact-info-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-note {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
}

.contact-item ul {
    list-style: none;
    padding-left: 0;
}

.contact-item ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.contact-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.contact-image {
    flex: 0.8;
}

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

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

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

.faq-container h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.faq-item {
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

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

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

.map-container h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.map-note {
    font-size: 14px;
    color: #95a5a6;
    font-style: italic;
}

.thanks-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
    min-height: 70vh;
}

.thanks-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
}

#service-confirmation {
    font-size: 19px;
    color: var(--secondary-color);
}

.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.step-card {
    flex: 1 1 calc(50% - 13px);
    min-width: 250px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.step-card .step-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

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

.thanks-info {
    background-color: #fff3cd;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #856404;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #856404;
}

.thanks-info ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

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

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

.cookies-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-offset-content,
    .intro-asymmetric,
    .process-overlay-layout,
    .about-split,
    .story-layout,
    .experience-layout,
    .contact-layout,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-text-block,
    .intro-right-offset,
    .about-text {
        transform: none;
        padding-left: 0;
    }

    .hero-image-block,
    .process-image,
    .about-image-stack {
        transform: none;
    }

    .section-header-offset {
        padding-left: 0;
    }

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

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

    .nav-links {
        gap: 20px;
    }

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

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