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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    min-height: 100vh;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    z-index: 1000;
}

.nav-brand {
    padding: 0 2rem 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand h2 {
    font-size: 1.5rem;
    color: #fff;
}

.nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
}

.nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #28a745;
}

.nav-links a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #28a745;
}

.nav-ad-notice {
    padding: 1rem 2rem;
    margin: 1rem 2rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 4px;
}

.ad-label {
    font-size: 0.75rem;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-footer {
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.nav-footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

.nav-footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.main-content {
    margin-left: 260px;
    flex: 1;
    width: calc(100% - 260px);
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-left {
    flex: 1;
    padding: 4rem 5rem;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-icon {
    color: #28a745;
    font-size: 1.4rem;
    margin-right: 0.8rem;
    font-weight: bold;
}

.hero-right {
    flex: 1;
    background: #ddd;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #28a745;
    text-decoration: none;
    border: 2px solid #28a745;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #28a745;
    color: #fff;
}

.intro-section {
    padding: 5rem 8rem;
    background: #fff;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 4rem;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.service-split {
    display: flex;
    margin-bottom: 4rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background: #e9ecef;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin-top: 1rem;
}

.cta-block {
    padding: 5rem 8rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
}

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

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

.info-section {
    padding: 5rem 4rem;
    background: #fff;
}

.info-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.process-list li:before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section {
    padding: 5rem 8rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    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: #28a745;
}

.form-group textarea {
    resize: vertical;
}

.disclaimer-section {
    padding: 3rem 8rem;
    background: #fff5e6;
    border-top: 3px solid #ffc107;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.site-footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 4rem 1.5rem 4rem;
    margin-left: 260px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #28a745;
}

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

.footer-bottom p {
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 260px;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-accept {
    background: #28a745;
    color: #fff;
}

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

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.page-header {
    padding: 5rem 8rem 3rem 8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.header-subtitle {
    font-size: 1.3rem;
    color: #555;
}

.services-grid {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 1;
    background: #e9ecef;
    min-height: 350px;
}

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

.service-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    padding-left: 1.8rem;
    margin-bottom: 0.6rem;
    position: relative;
    font-size: 1rem;
    color: #666;
}

.service-includes li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.duration {
    font-size: 0.95rem;
    color: #777;
}

.warranty-section {
    padding: 5rem 4rem;
    background: #fff;
}

.warranty-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.warranty-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.warranty-text {
    flex: 2;
}

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

.warranty-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.warranty-badge {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.badge-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    text-align: center;
}

.cta-section {
    padding: 5rem 8rem;
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-intro {
    padding: 4rem;
    background: #fff;
}

.about-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.about-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 5rem 8rem;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #28a745;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 5rem 4rem;
    background: #fff;
}

.team-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-image {
    flex: 1;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.equipment-section {
    padding: 5rem 8rem;
    background: #f8f9fa;
}

.equipment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.equipment-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.equipment-list {
    list-style: none;
    margin-bottom: 3rem;
}

.equipment-list li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.equipment-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.3rem;
}

.equipment-image {
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    padding: 5rem 8rem;
    background: #fff;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.contact-main {
    padding: 4rem;
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #28a745;
}

.contact-detail {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.4rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

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

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #555;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    object-fit: cover;
}

.location-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.location-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

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

.location-info li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.location-info li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.visit-info {
    padding: 5rem 8rem;
    background: #f8f9fa;
}

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.visit-tips {
    display: flex;
    gap: 2.5rem;
}

.tip-item {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tip-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #28a745;
}

.tip-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.faq-section {
    padding: 5rem 8rem;
    background: #fff;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

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

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

.thanks-section {
    padding: 5rem 8rem;
    background: #f8f9fa;
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    background: #fff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.thanks-message {
    margin-bottom: 3rem;
}

.thanks-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.service-info {
    font-weight: 600;
    color: #28a745;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.steps-list {
    list-style: none;
    counter-reset: steps;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.thanks-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.thanks-info li {
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 1rem;
    color: #555;
}

.thanks-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.thanks-contact {
    margin-bottom: 2.5rem;
}

.thanks-contact p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-email {
    font-weight: 600;
    color: #28a745;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.legal-page {
    padding: 4rem 8rem;
    background: #fff;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-update {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: #28a745;
    text-decoration: none;
}

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

@media (max-width: 1200px) {
    .hero-left {
        padding: 3rem;
    }

    .intro-section,
    .form-section,
    .disclaimer-section,
    .cta-block,
    .equipment-section,
    .approach-section,
    .values-section,
    .visit-info,
    .faq-section,
    .cta-section,
    .thanks-section,
    .legal-page {
        padding: 4rem;
    }
}

@media (max-width: 968px) {
    .sidebar-nav {
        width: 220px;
    }

    .main-content {
        margin-left: 220px;
        width: calc(100% - 220px);
    }

    .site-footer {
        margin-left: 220px;
    }

    .cookie-banner {
        left: 220px;
    }

    .hero-split,
    .service-split,
    .info-split,
    .about-split,
    .team-split,
    .warranty-split,
    .contact-layout {
        flex-direction: column;
    }

    .service-split.reverse {
        flex-direction: column;
    }

    .hero-right {
        height: 50vh;
    }

    .values-grid,
    .visit-tips {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .sidebar-nav {
        position: relative;
        width: 100%;
        height: auto;
        padding: 1.5rem 0;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .site-footer {
        margin-left: 0;
    }

    .cookie-banner {
        left: 0;
    }

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .intro-section,
    .form-section,
    .disclaimer-section,
    .cta-block,
    .equipment-section,
    .approach-section,
    .values-section,
    .visit-info,
    .faq-section,
    .cta-section,
    .thanks-section,
    .legal-page,
    .services-grid,
    .contact-main {
        padding: 3rem 1.5rem;
    }
}