* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px 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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

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

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

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

.header-asymmetric {
    padding: 30px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.header-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-block {
    margin-left: 40px;
}

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.brand-tagline {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 400;
}

.nav-floating {
    display: flex;
    gap: 35px;
    margin-right: 60px;
}

.nav-link {
    text-decoration: none;
    color: #34495e;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3498db;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    padding-left: 80px;
    padding-right: 40px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-diagonal {
    padding: 100px 20px 80px;
    background-color: #f8f9fa;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.intro-wrapper {
    transform: skewY(2deg);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.intro-text-block {
    flex: 1.2;
    padding-right: 30px;
}

.intro-text-block h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-visual {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-stacked {
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header-offset {
    margin-left: 60px;
    margin-bottom: 70px;
}

.section-header-offset h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-intro {
    font-size: 18px;
    color: #666;
    max-width: 700px;
}

.service-card-asymmetric {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-image-container {
    flex: 0.9;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content-offset {
    flex: 1.1;
    padding: 20px;
}

.service-content-offset h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-content-offset p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price-tag {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin: 25px 0;
}

.service-select-btn {
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.trust-block-offset {
    padding: 100px 20px;
    background-color: #34495e;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
}

.trust-content h3 {
    font-size: 40px;
    margin-bottom: 50px;
}

.trust-grid-asymmetric {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

.form-section-diagonal {
    padding: 120px 20px 100px;
    background-color: #f8f9fa;
    transform: skewY(2deg);
    margin: 80px 0;
}

.form-container-offset {
    transform: skewY(-2deg);
    max-width: 700px;
    margin: 0 auto 0 120px;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container-offset h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.service-selection-display {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.service-selection-display label {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 600;
}

.selected-service {
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #34495e;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #856404;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
    padding-left: 40px;
}

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.page-header-diagonal {
    padding: 80px 20px 60px;
    background-color: #34495e;
    color: #ffffff;
    transform: skewY(-2deg);
    margin-bottom: 60px;
}

.page-header-diagonal h1 {
    transform: skewY(2deg);
    font-size: 48px;
    max-width: 1200px;
    margin: 0 auto 20px 80px;
}

.page-intro {
    transform: skewY(2deg);
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 0 80px;
    color: #ecf0f1;
}

.services-detail-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content {
    flex: 1;
    padding: 20px;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-price-highlight {
    font-size: 32px;
    color: #27ae60;
    font-weight: 700;
    margin: 30px 0;
}

.cta-section-offset {
    padding: 100px 20px;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-content-diagonal {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content-diagonal p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.about-hero-offset {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
}

.about-hero-content {
    flex: 1;
    padding-left: 60px;
}

.about-hero-content h1 {
    font-size: 52px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.about-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.about-hero-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

.about-hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-story-diagonal {
    padding: 100px 20px;
    background-color: #f8f9fa;
    transform: skewY(2deg);
    margin: 80px 0;
}

.story-block-left {
    transform: skewY(-2deg);
    flex: 1;
    padding-right: 50px;
}

.story-block-left h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.story-visual-right {
    transform: skewY(-2deg);
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-story-diagonal .intro-wrapper {
    transform: skewY(-2deg);
}

.values-section-stacked {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.values-section-stacked h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

.values-grid-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-card {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.value-card.offset-left {
    margin-left: 0;
    margin-right: 100px;
}

.value-card.offset-right {
    margin-left: 100px;
    margin-right: 0;
}

.value-card h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.team-section-diagonal {
    padding: 100px 20px;
    background-color: #34495e;
    color: #ffffff;
}

.team-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.team-content-wrapper h2 {
    font-size: 44px;
    margin-bottom: 25px;
}

.team-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #ecf0f1;
    margin-bottom: 40px;
}

.team-image-block {
    background-color: #2c3e50;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 400px;
}

.team-image-block img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #ecf0f1;
}

.certifications-offset {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px 0 80px;
}

.certifications-offset h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.cert-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

.cert-item h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.cert-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.approach-section-stacked {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.approach-content h2 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

.approach-steps-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.step-block.left {
    margin-right: 100px;
}

.step-block.right {
    margin-left: 100px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    min-width: 80px;
}

.step-block h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-about-diagonal {
    padding: 80px 20px;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.cta-about-diagonal h2 {
    transform: skewY(2deg);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-about-diagonal p {
    transform: skewY(2deg);
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-link-large {
    transform: skewY(2deg);
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-link-large:hover {
    transform: skewY(2deg) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-header-diagonal {
    padding: 80px 20px 60px;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

.contact-header-diagonal h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 18px;
    color: #ecf0f1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content-asymmetric {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
    padding-left: 40px;
}

.contact-info-block h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-detail-group {
    margin-bottom: 35px;
}

.contact-detail-group h3 {
    font-size: 22px;
    color: #3498db;
    margin-bottom: 12px;
}

.contact-detail-group p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.hours-note {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 10px;
}

.contact-map-visual {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.contact-map-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-hours-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.hours-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.hours-wrapper h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

.hours-grid-offset {
    display: flex;
    gap: 50px;
}

.hours-card {
    flex: 1;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hours-card h4 {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 15px;
}

.hours-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-directions-offset {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px 0 80px;
}

.directions-content h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.directions-split {
    display: flex;
    gap: 60px;
}

.direction-block {
    flex: 1;
}

.direction-block h3 {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 15px;
}

.direction-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-cta-section {
    padding: 80px 20px;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-btn-contact {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.thanks-section-centered {
    padding: 100px 20px;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 60px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-service-info {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 50px;
}

.selected-service-display {
    font-size: 18px;
    color: #2c3e50;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.next-steps-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

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

.btn-primary {
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 40px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-additional-info {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.info-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.info-wrapper h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.info-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.info-wrapper a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.info-wrapper a:hover {
    text-decoration: underline;
}

.legal-page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px 100px;
}

.legal-page-content h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.legal-page-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page-content h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-page-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

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

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

@media (max-width: 1024px) {
    .hero-offset,
    .intro-wrapper,
    .service-card-asymmetric,
    .about-hero-offset,
    .contact-content-asymmetric {
        flex-direction: column;
    }

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

    .trust-grid-asymmetric,
    .hours-grid-offset,
    .next-steps-grid,
    .directions-split {
        flex-direction: column;
    }

    .value-card.offset-left,
    .value-card.offset-right,
    .step-block.left,
    .step-block.right {
        margin-left: 0;
        margin-right: 0;
    }

    .brand-block {
        margin-left: 0;
    }

    .nav-floating {
        margin-right: 0;
    }

    .hero-title,
    .about-hero-content h1 {
        font-size: 38px;
    }

    .form-container-offset {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        gap: 20px;
    }

    .hero-content-left {
        padding-left: 20px;
    }

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

    .contact-info-block {
        padding-left: 0;
    }

    .contact-directions-offset {
        padding-left: 20px;
    }

    .certifications-offset {
        padding-left: 20px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}