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

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

.main-nav {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

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

.nav-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

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

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

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

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-offset-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    overflow: hidden;
}

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

.hero-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 3rem;
    margin-left: 4rem;
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-text-overlay h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
    font-weight: 800;
}

.hero-text-overlay p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #34495e;
}

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

.cta-primary:hover {
    background-color: #3d5a4c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 107, 92, 0.3);
}

.intro-offset {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

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

.intro-left {
    flex: 1;
    padding-right: 2rem;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
    font-weight: 700;
}

.intro-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.intro-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

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

.services-preview-staggered {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

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

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5c7a68;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-card.offset-1 {
    margin-left: 5%;
    max-width: 700px;
}

.service-card.offset-2 {
    margin-left: 20%;
    max-width: 750px;
}

.service-card.offset-3 {
    margin-left: 35%;
    max-width: 700px;
}

.service-card.offset-4 {
    margin-left: 15%;
    max-width: 720px;
}

.service-card.offset-5 {
    margin-left: 8%;
    max-width: 680px;
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2d4a3e;
    font-weight: 700;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #4a5568;
    font-size: 1rem;
}

.service-price {
    margin: 0 1.5rem 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a6b5c;
}

.service-select-btn {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #4a6b5c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section-diagonal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f0ed 0%, #f4f7f5 100%);
    position: relative;
}

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

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.trust-text a {
    color: #4a6b5c;
    text-decoration: none;
    font-weight: 600;
}

.trust-text a:hover {
    text-decoration: underline;
}

.trust-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

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

.form-section-asymmetric {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

.form-container-offset {
    max-width: 900px;
    margin-left: 12%;
}

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

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.consultation-form {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.form-submit-btn:hover {
    background-color: #3d5a4c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 107, 92, 0.3);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-top: 2px solid #e2e8f0;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    font-style: italic;
}

.main-footer {
    background-color: #2d4a3e;
    color: #e8f0ed;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

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

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

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

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

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

.footer-section.references ol {
    margin-left: 1.2rem;
    color: #b8c9c1;
    font-size: 0.9rem;
}

.footer-section.references ol li {
    margin-bottom: 0.5rem;
}

.footer-section.references a {
    color: #b8c9c1;
    text-decoration: none;
}

.footer-section.references a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.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: #b8c9c1;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 74, 62, 0.98);
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.cookie-btn {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #5c7a68;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #4a6b5c;
}

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

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

.page-hero-offset {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-offset img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.page-hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-hero-text h1 {
    font-size: 2.5rem;
    color: #2d4a3e;
    font-weight: 800;
}

.about-intro-asymmetric {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.about-text-main {
    flex: 1.3;
}

.about-text-main h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.about-visual-offset {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    transform: rotate(2deg);
}

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

.values-section-staggered {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

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

.values-header h2 {
    font-size: 2.5rem;
    color: #2d4a3e;
    font-weight: 700;
}

.values-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.value-card.offset-left {
    margin-left: 5%;
    max-width: 700px;
}

.value-card.offset-right {
    margin-left: auto;
    margin-right: 8%;
    max-width: 700px;
}

.value-card.offset-center {
    margin-left: 15%;
    max-width: 750px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.expertise-section-diagonal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.expertise-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.expertise-text {
    flex: 1.2;
}

.expertise-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.approach-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f4f7f5 0%, #e8f0ed 100%);
}

.approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2d4a3e;
    font-weight: 700;
}

.approach-steps-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.approach-step.offset-1 {
    margin-left: 3%;
    max-width: 800px;
}

.approach-step.offset-2 {
    margin-left: 18%;
    max-width: 820px;
}

.approach-step.offset-3 {
    margin-left: 10%;
    max-width: 800px;
}

.approach-step.offset-4 {
    margin-left: 22%;
    max-width: 780px;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #5c7a68;
    min-width: 60px;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.cta-section-offset {
    padding: 6rem 2rem;
    background-color: #2d4a3e;
}

.cta-content-asymmetric {
    max-width: 800px;
    margin-left: 10%;
    text-align: left;
}

.cta-content-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-content-asymmetric p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e8f0ed;
}

.page-header-asymmetric {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #e8f0ed 0%, #f4f7f5 100%);
}

.header-content-offset {
    max-width: 900px;
    margin-left: 8%;
}

.header-content-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
    font-weight: 800;
}

.header-content-offset p {
    font-size: 1.2rem;
    color: #4a5568;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-detail-card.asymmetric-1 {
    margin-left: 3%;
}

.service-detail-card.asymmetric-2 {
    margin-left: 8%;
    flex-direction: row-reverse;
}

.service-detail-card.asymmetric-3 {
    margin-left: 5%;
}

.service-detail-card.asymmetric-4 {
    margin-left: 10%;
    flex-direction: row-reverse;
}

.service-detail-card.asymmetric-5 {
    margin-left: 4%;
}

.service-detail-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.service-detail-content a {
    color: #4a6b5c;
    text-decoration: none;
    font-weight: 600;
}

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

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

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5c7a68;
    font-weight: 700;
}

.service-pricing-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a6b5c;
}

.service-form-section {
    padding: 6rem 2rem;
    background-color: #f9fafb;
}

.form-wrapper-offset {
    max-width: 900px;
    margin-left: 10%;
}

.form-wrapper-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
    font-weight: 700;
}

.form-wrapper-offset p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
}

.service-inquiry-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-hero-offset {
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #e8f0ed 0%, #f4f7f5 100%);
}

.contact-header-content {
    max-width: 800px;
    margin-left: 8%;
}

.contact-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
    font-weight: 800;
}

.contact-header-content p {
    font-size: 1.2rem;
    color: #4a5568;
}

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

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-block {
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-block.offset-1 {
    margin-left: 5%;
    max-width: 650px;
}

.contact-block.offset-2 {
    margin-left: 20%;
    max-width: 700px;
}

.contact-block.offset-3 {
    margin-left: 12%;
    max-width: 680px;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2d4a3e;
    font-weight: 700;
}

.contact-details p {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: #4a5568;
}

.email-display {
    color: #4a6b5c;
    font-weight: 600;
}

.info-text {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
}

.contact-visual-section {
    border-radius: 8px;
    overflow: hidden;
    margin: 4rem 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.location-info-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.location-content-offset {
    max-width: 900px;
    margin-left: 10%;
}

.location-content-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.directions-note {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.directions-content {
    max-width: 800px;
    margin-left: 15%;
    padding: 2rem;
    background-color: #f4f7f5;
    border-left: 4px solid #4a6b5c;
    border-radius: 4px;
}

.directions-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f0ed 0%, #f4f7f5 100%);
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
    font-weight: 800;
}

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

.service-confirm {
    margin-top: 2rem;
}

.service-selected {
    font-size: 1.1rem;
    color: #4a6b5c;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 4px;
    display: inline-block;
}

.next-steps-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.next-steps-content h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2d4a3e;
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background-color: #4a6b5c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d4a3e;
    font-weight: 700;
}

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

.additional-resources {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.resources-content-offset {
    max-width: 800px;
    margin-left: 10%;
}

.resources-content-offset h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
    font-weight: 700;
}

.resources-content-offset p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.resources-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #4a6b5c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background-color: #3d5a4c;
    transform: translateY(-2px);
}

.thanks-visual {
    border-radius: 8px;
    overflow: hidden;
    margin: 4rem 2rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

.legal-page-content {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d4a3e;
    font-weight: 800;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d4a3e;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 600;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.2rem;
    margin-left: 1.5rem;
    color: #4a5568;
}

.legal-container ul li,
.legal-container ol li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.legal-container a {
    color: #4a6b5c;
    text-decoration: none;
    font-weight: 600;
}

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

.last-updated {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: #f4f7f5;
}

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

.cookie-table th {
    font-weight: 700;
    color: #2d4a3e;
}

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

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

    .content-wrapper,
    .about-content-wrapper,
    .trust-content-offset,
    .expertise-container {
        flex-direction: column;
    }

    .hero-image-wrapper {
        width: 100%;
        position: relative;
    }

    .hero-text-overlay {
        margin-left: 0;
        max-width: 100%;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4,
    .service-card.offset-5 {
        margin-left: 0;
        max-width: 100%;
    }

    .value-card.offset-left,
    .value-card.offset-right,
    .value-card.offset-center {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .approach-step.offset-1,
    .approach-step.offset-2,
    .approach-step.offset-3,
    .approach-step.offset-4 {
        margin-left: 0;
        max-width: 100%;
    }

    .contact-block.offset-1,
    .contact-block.offset-2,
    .contact-block.offset-3 {
        margin-left: 0;
        max-width: 100%;
    }

    .service-detail-card {
        flex-direction: column !important;
        margin-left: 0 !important;
    }

    .section-header-offset,
    .form-container-offset,
    .form-wrapper-offset,
    .cta-content-asymmetric,
    .header-content-offset,
    .contact-header-content,
    .location-content-offset,
    .resources-content-offset,
    .directions-content {
        margin-left: 0;
    }

    .nav-links {
        gap: 1rem;
    }

    .trust-visual {
        transform: rotate(0deg);
    }

    .about-visual-offset {
        transform: rotate(0deg);
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}