* {
    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: #ffffff;
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation - Asymmetric */
.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-brand a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e67e22;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e67e22;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section - Offset Asymmetric */
.hero-offset {
    margin-top: 80px;
    padding: 4rem 5% 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 85vh;
}

.hero-text-block {
    flex: 1;
    padding-right: 2rem;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
}

/* CTA Buttons */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #e67e22;
    color: #ffffff;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #e67e22;
    border: 2px solid #e67e22;
}

.cta-secondary:hover {
    background: #e67e22;
    color: #ffffff;
}

/* Intro Section - Overlap */
.intro-overlap {
    padding: 5rem 5%;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
}

.intro-card {
    flex: 1.2;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.intro-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.intro-image-float {
    flex: 0.8;
    position: relative;
    margin-top: -4rem;
}

.intro-image-float img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: rotate(3deg);
}

/* Services Preview - Asymmetric Grid */
.services-preview-grid {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section-header-offset {
    margin-bottom: 3rem;
    margin-left: 5%;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
}

/* Offset variations for asymmetric feel */
.card-offset-1 {
    margin-top: 2rem;
}

.card-offset-2 {
    margin-top: -1rem;
}

.card-offset-3 {
    margin-top: 3rem;
}

.card-offset-4 {
    margin-top: 0.5rem;
}

.card-offset-5 {
    margin-top: 1.5rem;
}

/* Form Section - Diagonal */
.form-section-diagonal {
    padding: 5rem 5%;
    display: flex;
    align-items: stretch;
    gap: 3rem;
    background: #2c3e50;
    position: relative;
}

.form-container {
    flex: 1;
    padding: 2rem;
}

.form-container h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255,255,255,0.95);
    color: #2c3e50;
    transition: border 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem;
    background: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-image-overlay {
    flex: 0.8;
    position: relative;
}

.form-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: rotate(-3deg);
}

/* Trust Indicators */
.trust-indicators {
    padding: 4rem 5%;
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-block {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    text-align: center;
}

.trust-block h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.trust-block p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.block-1 {
    margin-top: 2rem;
}

.block-2 {
    margin-top: -1rem;
}

.block-3 {
    margin-top: 1.5rem;
}

/* Testimonials - Scattered */
.testimonials-scattered {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.testimonials-scattered h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 2rem);
    min-width: 280px;
}

.testimonial p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial .author {
    font-weight: 600;
    color: #e67e22;
    font-style: normal;
}

.testimonial-pos-1 {
    margin-top: 2rem;
}

.testimonial-pos-2 {
    margin-top: -1.5rem;
}

.testimonial-pos-3 {
    margin-top: 0.5rem;
}

/* CTA Block */
.cta-sticky-trigger {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-content-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d35400;
    transform: scale(1.05);
}

/* Footer - Offset */
.footer-offset {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #e67e22;
}

.footer-col-1 {
    margin-top: 1rem;
}

.footer-col-2 {
    margin-top: -0.5rem;
}

.footer-col-3 {
    margin-top: 0.5rem;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Page Header Diagonal */
.page-header-diagonal {
    margin-top: 80px;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
}

.page-header-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-diagonal p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page */
.about-story {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-text-block {
    flex: 1.2;
}

.story-text-block h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-text-block p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image-float {
    flex: 0.8;
}

.story-image-float img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: rotate(-2deg);
}

.about-values-grid {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.about-values-grid h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: calc(50% - 1.5rem);
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.team-section-offset {
    padding: 5rem 5%;
}

.team-section-offset h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    text-align: center;
    width: calc(25% - 2.5rem);
    min-width: 240px;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-member .role {
    font-size: 1rem;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.cta-block-about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
}

.cta-content {
    color: #ffffff;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Page */
.services-detailed {
    padding: 3rem 5%;
}

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

.service-detail-block.block-left {
    flex-direction: row;
}

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

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

.service-detail-content h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    font-size: 1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

.price-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.pricing-info {
    padding: 3rem 5%;
    background: #f8f9fa;
    text-align: center;
}

.pricing-info h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.pricing-info p {
    font-size: 1.05rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

/* Contact Page */
.contact-info-layout {
    padding: 4rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.contact-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
}

.contact-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: #e67e22;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.hours-item .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-item .time {
    color: #555;
}

.contact-card .note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef5e7;
    border-left: 4px solid #f39c12;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.contact-card-1 {
    margin-top: 1rem;
}

.contact-card-2 {
    margin-top: -0.5rem;
}

.contact-card-3 {
    margin-top: 0.5rem;
}

.map-placeholder {
    padding: 0;
    margin: 3rem 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(44, 62, 80, 0.9);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
}

.contact-faq {
    padding: 4rem 5%;
    background: #f8f9fa;
}

.contact-faq h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: calc(50% - 1rem);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.cta-block-contact {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
}

.cta-block-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-block-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-page {
    margin-top: 80px;
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 70vh;
}

.thanks-content {
    flex: 1;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-submessage {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #d35400;
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.thanks-image {
    flex: 0.8;
}

.thanks-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

/* Legal Pages */
.legal-page {
    margin-top: 80px;
    padding: 4rem 10%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.update-date {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        gap: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-offset,
    .intro-overlap,
    .about-story,
    .service-detail-block,
    .thanks-page,
    .form-section-diagonal {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .service-card,
    .testimonial,
    .value-card,
    .team-member,
    .faq-item {
        width: 100%;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

    .trust-block {
        margin-top: 0 !important;
    }

    .legal-page {
        padding: 3rem 5%;
    }
}