* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.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;
}

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

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

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

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

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

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

.btn-reject:hover {
    background: #333333;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4f;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #f8f9fa;
    border-radius: 3px;
    margin: 0 20px;
}

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

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

.main-nav a:hover {
    color: #2c5f4f;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #4a5568;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #234a3d;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #2c5f4f;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background: #2c5f4f;
    color: #ffffff;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    position: relative;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: #4a5568;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 240px;
    position: relative;
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #234a3d;
}

.form-split {
    display: flex;
    align-items: stretch;
}

.form-visual {
    flex: 1;
    position: relative;
}

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

.form-container {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5f4f;
}

.trust-split {
    display: flex;
    padding: 100px 20px;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content {
    flex: 1;
    padding-right: 60px;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2c5f4f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
    font-weight: 500;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 11px;
    color: #666666;
    font-style: italic;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

.page-hero {
    background: linear-gradient(135deg, #2c5f4f 0%, #234a3d 100%);
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    color: #ffffff;
    font-weight: 800;
}

.about-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
}

.about-text {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-image {
    flex: 1;
    position: relative;
}

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

.values-split {
    display: flex;
    align-items: stretch;
}

.values-image {
    flex: 1;
    position: relative;
}

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

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

.values-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.team-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.team-intro {
    margin-bottom: 40px;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.team-details p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.commitment-split {
    display: flex;
    align-items: stretch;
}

.commitment-content {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.commitment-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.commitment-image {
    flex: 1;
    position: relative;
}

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

.services-intro-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
}

.services-intro-text {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-intro-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #4a5568;
}

.services-intro-image {
    flex: 1;
    position: relative;
}

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

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.service-detail-info h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 25px;
}

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

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

.service-features li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

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

.service-detail-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

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

.rental-terms {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

.rental-terms h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

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

.terms-column {
    flex: 1;
    min-width: 300px;
}

.terms-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.terms-column p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f4f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.contact-image {
    flex: 1;
    position: relative;
}

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

.directions-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.directions-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.directions-text {
    flex: 1;
    min-width: 300px;
}

.directions-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.directions-notes {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.directions-notes h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.directions-notes p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.directions-notes ul {
    list-style: none;
    padding-left: 0;
}

.directions-notes li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.directions-notes li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2c5f4f;
    font-weight: 700;
}

.faq-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

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

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.thanks-hero {
    background: linear-gradient(135deg, #2c5f4f 0%, #234a3d 100%);
    padding: 80px 20px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 20px;
    color: #e0f2f1;
    margin-bottom: 40px;
}

.confirmation-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.confirmation-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.confirmation-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.service-confirm {
    font-weight: 700;
    color: #2c5f4f;
    font-size: 18px;
}

.next-steps-split {
    display: flex;
    align-items: stretch;
}

.next-steps-text {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.next-steps-text h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 35px;
    padding-left: 60px;
    position: relative;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #2c5f4f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.steps-list h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-list p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.next-steps-image {
    flex: 1;
    position: relative;
}

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

.preparation-tips {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
}

.preparation-tips h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.tips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tip-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tip-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.tip-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
}

.contact-reminder {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
}

.contact-reminder h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-reminder > p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
}

.contact-quick {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-quick p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
}

.contact-quick strong {
    color: #2c5f4f;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 800;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f4f;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

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

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

.cookie-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #1a1a1a;
}

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

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-split,
    .about-split,
    .values-split,
    .commitment-split,
    .services-intro-split,
    .service-detail-split,
    .contact-split,
    .next-steps-split {
        flex-direction: column;
    }

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

    .trust-split,
    .terms-split,
    .directions-split,
    .faq-split {
        flex-direction: column;
    }

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

    .section-header h2,
    .intro-text h2,
    .values-text h2,
    .about-text h2,
    .commitment-content h2,
    .services-intro-text h2,
    .contact-info h2,
    .directions-section h2,
    .faq-section h2,
    .next-steps-text h2,
    .preparation-tips h2,
    .rental-terms h2 {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .trust-content {
        padding-right: 0;
    }
}