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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.header-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover {
    color: #27ae60;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #27ae60;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ecf0f1;
}

.hero-content {
    max-width: 550px;
}

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

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

.btn-hero {
    display: inline-block;
    padding: 16px 38px;
    background-color: #27ae60;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-hero:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.hero-right {
    background-size: cover;
    background-position: center;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image,
.intro-text {
    flex: 1;
}

.intro-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.intro-text {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.services-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    min-height: 400px;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

.service-image,
.service-info {
    flex: 1;
}

.service-image {
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-info {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-service {
    align-self: flex-start;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.trust-split {
    display: flex;
    min-height: 550px;
}

.trust-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
}

.trust-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.trust-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.form-section {
    padding: 80px 60px;
    background-color: #2c3e50;
}

.form-container-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.form-left-content,
.form-right {
    flex: 1;
}

.form-left-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-left-content p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #ecf0f1;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #ecf0f1;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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: #27ae60;
}

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

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

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-col p,
.footer-col ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 12px 28px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 12px 28px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #34495e;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.page-hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.about-story-split {
    display: flex;
    min-height: 500px;
}

.story-text {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.story-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.values-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

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

.values-split-layout {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.value-block {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-block h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 18px;
    font-weight: 700;
}

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

.team-split {
    display: flex;
    min-height: 500px;
}

.team-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.team-text {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.team-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.equipment-section {
    padding: 80px 60px;
    background-color: #fff;
}

.equipment-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.equipment-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.equipment-item {
    flex: 1;
    min-width: 280px;
    padding: 35px 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.equipment-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.commitment-split {
    display: flex;
    min-height: 550px;
}

.commitment-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.commitment-content .btn-primary {
    align-self: flex-start;
    margin-top: 20px;
    padding: 16px 38px;
    font-size: 16px;
}

.commitment-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.services-intro-split {
    display: flex;
    min-height: 500px;
}

.intro-left {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.intro-left h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

.intro-right {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.detailed-services {
    background-color: #fff;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-info {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-price-large {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-detail-info p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

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

.service-detail-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-section-split {
    padding: 80px 60px;
    background-color: #ecf0f1;
}

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

.cta-content-center h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-content-center .btn-primary {
    padding: 16px 38px;
    font-size: 16px;
}

.contact-split-section {
    display: flex;
    min-height: 600px;
}

.contact-info-block {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: #fff;
}

.contact-info-block h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #27ae60;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #ecf0f1;
}

.contact-map-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    padding: 40px;
    background-color: rgba(44, 62, 80, 0.9);
    color: #fff;
    border-radius: 8px;
}

.map-overlay p {
    font-size: 18px;
    line-height: 1.7;
}

.visit-info-split {
    display: flex;
    min-height: 500px;
}

.visit-text {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.visit-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.visit-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.directions-section {
    padding: 80px 60px;
    background-color: #fff;
}

.directions-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.directions-split {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.direction-item {
    flex: 1;
    min-width: 280px;
    padding: 35px 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.direction-item h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 18px;
    font-weight: 700;
}

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

.cta-section-contact {
    padding: 80px 60px;
    background-color: #2c3e50;
}

.cta-section-contact .cta-content-center {
    color: #fff;
}

.cta-section-contact .cta-content-center h2 {
    color: #fff;
}

.cta-section-contact .cta-content-center p {
    color: #ecf0f1;
}

.thanks-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

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

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

.thanks-container p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
    padding: 16px 38px;
    font-size: 16px;
}

.thanks-actions .btn-secondary {
    background-color: #2c3e50;
    color: #fff;
    border: none;
}

.thanks-actions .btn-secondary:hover {
    background-color: #34495e;
}

.next-steps-section {
    padding: 80px 60px;
    background-color: #fff;
}

.next-steps-section h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 25px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #27ae60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.legal-page {
    padding: 80px 60px;
    background-color: #f8f9fa;
    min-height: 600px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 70px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    font-size: 44px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

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

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

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

.legal-container ul li {
    list-style: disc;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookie-table thead {
    background-color: #2c3e50;
    color: #fff;
}

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

.cookie-table th {
    font-weight: 700;
    font-size: 15px;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

.cookie-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .intro-split,
    .service-card,
    .trust-split,
    .about-story-split,
    .team-split,
    .commitment-split,
    .services-intro-split,
    .service-detail-split,
    .contact-split-section,
    .visit-info-split,
    .form-container-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .legal-container {
        padding: 40px 30px;
    }

    .cookie-table {
        font-size: 13px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }

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

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