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

:root {
    --primary: #2d3748;
    --secondary: #4a5568;
    --accent: #e2b887;
    --light: #f7fafc;
    --white: #ffffff;
    --dark: #1a202c;
    --border: #e2e8f0;
    --text: #2d3748;
    --text-light: #718096;
}

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

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

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

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

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

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent);
    color: var(--dark);
}

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

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

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

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background: var(--light);
}

.hero-content-offset {
    flex: 1;
    padding: 4rem 2rem 4rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-hero:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.hero-image-irregular {
    flex: 1;
    position: relative;
    margin-left: -5%;
    margin-top: 5%;
    transform: rotate(-2deg);
}

.hero-image-irregular img {
    width: 100%;
    height: 100%;
    display: block;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
}

.intro-overlap {
    display: flex;
    max-width: 1400px;
    margin: -8rem auto 6rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    gap: 3rem;
    align-items: flex-start;
}

.overlap-box {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateX(3rem);
}

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

.overlap-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary);
}

.overlap-image-right {
    flex: 0.6;
    margin-top: 3rem;
}

.overlap-image-right img {
    width: 100%;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.services-staggered {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.section-header-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-header-left p {
    font-size: 1.15rem;
    color: var(--secondary);
}

.service-card {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    align-items: flex-start;
    background: var(--white);
}

.card-offset-1 {
    margin-left: 5%;
}

.card-offset-2 {
    margin-left: 15%;
    margin-right: 5%;
}

.card-offset-3 {
    margin-left: 10%;
    margin-right: 10%;
}

.service-image {
    flex: 0.45;
    position: relative;
}

.service-image img {
    width: 100%;
    display: block;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.service-info {
    flex: 0.55;
    padding: 1.5rem 0;
}

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

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 0.85rem 1.75rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.process-diagonal {
    background: var(--light);
    padding: 6rem 2rem;
    margin: 6rem 0;
    transform: skewY(-2deg);
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
}

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

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

.step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent);
}

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

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

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary);
}

.testimonials-offset {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.testimonials-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 10%;
    color: var(--primary);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: var(--light);
    border-left: 3px solid var(--accent);
    position: relative;
}

.testimonial-card:nth-child(1) {
    margin-top: 0;
}

.testimonial-card:nth-child(2) {
    margin-top: 3rem;
}

.testimonial-card:nth-child(3) {
    margin-top: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.cta-floating {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.cta-box {
    background: var(--primary);
    color: var(--white);
    padding: 4rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: rotate(-1deg);
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.contact-form {
    transform: rotate(1deg);
}

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

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    border-radius: 4px;
    font-family: inherit;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-row select {
    cursor: pointer;
}

.form-row select option {
    background: var(--primary);
    color: var(--white);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--accent);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.about-text-side {
    flex: 1;
    padding-right: 2rem;
}

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

.intro-large {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--secondary);
}

.about-image-side {
    flex: 0.8;
}

.about-image-side img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-story {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.team-offset {
    max-width: 1400px;
    margin: 8rem auto;
    padding: 0 2rem;
}

.team-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    margin-left: 5%;
    color: var(--primary);
}

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.team-member {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.team-member:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 10%;
}

.team-member:nth-child(odd) {
    margin-right: 10%;
}

.member-image {
    flex: 0.35;
}

.member-image img {
    width: 100%;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.member-info {
    flex: 0.65;
    padding-top: 1rem;
}

.member-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--secondary);
}

.philosophy-diagonal {
    background: var(--light);
    padding: 6rem 2rem;
    margin: 6rem 0;
    transform: skewY(2deg);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(-2deg);
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.point {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.point p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary);
}

.values-overlap {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.values-box {
    background: var(--primary);
    color: var(--white);
    padding: 3.5rem;
    transform: rotate(1deg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.values-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.values-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    max-width: 700px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.cta-about p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.services-hero {
    background: var(--light);
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero-services-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.services-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--secondary);
}

.services-detailed {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

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

.service-detail-left {
    flex: 0.45;
}

.service-detail-left img {
    width: 100%;
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-detail-right {
    flex: 0.55;
}

.service-detail-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.service-includes {
    margin-bottom: 2rem;
}

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

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

.service-includes ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary);
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.service-price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.services-faq {
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 2rem;
}

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

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

.faq-item {
    flex: 1;
    min-width: 350px;
    padding: 2rem;
    background: var(--light);
    border-top: 3px solid var(--accent);
}

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

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--secondary);
}

.cta-services {
    max-width: 700px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

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

.cta-services p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.contact-hero {
    background: var(--light);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 6rem;
}

.contact-info-side {
    flex: 0.4;
}

.info-block {
    margin-bottom: 3rem;
}

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

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary);
}

.address {
    font-weight: 500;
    color: var(--primary);
}

.email-display {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

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

.hours {
    font-weight: 500;
    color: var(--primary);
}

.contact-form-side {
    flex: 0.6;
}

.contact-form-side h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-form-side > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary);
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 1rem;
    border-radius: 4px;
    font-family: inherit;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.checkbox-label a {
    color: var(--accent);
}

.btn-submit-contact {
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit-contact:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.contact-map-placeholder {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.map-overlay {
    background: var(--light);
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed var(--border);
}

.map-overlay p {
    font-size: 1.1rem;
    color: var(--secondary);
}

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background: var(--white);
    padding: 1rem;
    border-left: 3px solid var(--accent);
    margin: 1.5rem 0;
    font-weight: 600;
    color: var(--primary);
}

.thanks-next-steps {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary);
}

.thanks-next {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.thanks-next h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

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

.step-box {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--light);
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 1rem;
}

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

.step-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary);
}

.thanks-explore {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.thanks-explore h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary);
}

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

.explore-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.explore-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.explore-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary);
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.legal-container strong {
    color: var(--primary);
}

.legal-container a {
    color: var(--accent);
    text-decoration: underline;
}

.domain-ref {
    font-family: monospace;
    background: var(--light);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        max-width: 100%;
        padding: 3rem 2rem;
        margin-top: 0;
    }

    .hero-image-irregular {
        margin: 0;
        transform: none;
    }

    .intro-overlap {
        flex-direction: column;
        margin-top: 3rem;
    }

    .overlap-box {
        transform: none;
    }

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

    .card-offset-1,
    .card-offset-2,
    .card-offset-3 {
        margin-left: 0;
        margin-right: 0;
    }

    .about-hero-split {
        flex-direction: column;
    }

    .team-member {
        flex-direction: column;
    }

    .team-member:nth-child(even) {
        flex-direction: column;
        margin-left: 0;
    }

    .team-member:nth-child(odd) {
        margin-right: 0;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .contact-main {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        margin-top: 0;
    }

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