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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a73e8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1a73e8;
}

.hero-section {
    margin-top: 0;
}

.hero-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 650px;
}

.hero-content p {
    font-size: 20px;
    color: #f8f9fa;
    margin-bottom: 35px;
    max-width: 580px;
}

.cta-primary {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1557b0;
}

.intro-cards {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-card p {
    color: #5f6368;
    line-height: 1.7;
}

.services-overview {
    padding: 90px 0;
    background: #ffffff;
}

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

.section-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #5f6368;
}

.service-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 18px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-body p {
    color: #5f6368;
    margin-bottom: 18px;
    line-height: 1.6;
}

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

.select-service {
    width: 100%;
    padding: 12px 24px;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1557b0;
}

.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-it-works h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.process-step {
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.process-step p {
    color: #5f6368;
    line-height: 1.6;
}

.booking-section {
    padding: 90px 0;
    background: #ffffff;
}

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
}

.booking-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.booking-card > p {
    text-align: center;
    color: #5f6368;
    margin-bottom: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 14px 32px;
    background: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #1557b0;
}

.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

.testimonial-card p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #1a73e8;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-section p {
    color: #adb5bd;
    line-height: 1.6;
    font-size: 14px;
}

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

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

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

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.5;
}

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

.footer-bottom p {
    color: #adb5bd;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    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: 25px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    color: #2c3e50;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #1a73e8;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #1557b0;
}

.cookie-btn.reject {
    background: #e9ecef;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background: #ced4da;
}

.cookie-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-header {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #5f6368;
}

.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content p {
    color: #5f6368;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-card p {
    color: #5f6368;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #5f6368;
    line-height: 1.7;
}

.team-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    width: calc(33.333% - 20px);
    min-width: 280px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.team-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.team-card h4 {
    font-size: 20px;
    padding: 20px 20px 10px;
    color: #1a1a1a;
}

.team-card p {
    padding: 0 20px 25px;
    color: #5f6368;
    line-height: 1.6;
}

.approach-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.approach-item {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.approach-item p {
    color: #5f6368;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.cta-card {
    background: #1a73e8;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1a73e8;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #f8f9fa;
}

.services-detailed {
    padding: 80px 0;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.service-detail-content {
    flex: 1.5;
    min-width: 400px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.equipment-list {
    list-style-position: inside;
    color: #5f6368;
    line-height: 1.9;
    margin-bottom: 18px;
}

.rental-terms {
    padding: 80px 0;
    background: #f8f9fa;
}

.rental-terms h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.terms-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.terms-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.terms-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.terms-card p {
    color: #5f6368;
    line-height: 1.7;
}

.booking-cta {
    padding: 80px 0;
    background: #ffffff;
}

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

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 18px;
    color: #5f6368;
    margin-bottom: 30px;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 320px;
}

.contact-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.address-line {
    color: #5f6368;
    margin-bottom: 5px;
}

.email-display {
    color: #1a73e8;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-note {
    color: #6c757d;
    font-size: 14px;
    margin-top: 12px;
    font-style: italic;
}

.hours-list {
    margin-top: 12px;
}

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

.hours-row .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-row .time {
    color: #5f6368;
}

.contact-map {
    flex: 1;
    min-width: 320px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    margin-bottom: 25px;
    background-color: #e9ecef;
}

.map-overlay {
    background: rgba(26, 115, 232, 0.85);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

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

.location-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.location-info p {
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 15px;
}

.inquiry-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.inquiry-types h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.inquiry-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.inquiry-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.inquiry-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.inquiry-card p {
    color: #5f6368;
    line-height: 1.7;
}

.directions-section {
    padding: 80px 0;
    background: #ffffff;
}

.directions-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.directions-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.direction-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.direction-item p {
    color: #5f6368;
    line-height: 1.7;
    margin-bottom: 8px;
}

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #5f6368;
    margin-bottom: 50px;
}

.confirmation-details {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-text p {
    color: #5f6368;
    line-height: 1.6;
}

.service-reference {
    background: #e7f3ff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.selected-package h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.package-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a73e8;
}

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

.btn-primary {
    display: inline-block;
    background: #1a73e8;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1557b0;
}

.btn-secondary {
    display: inline-block;
    background: #e9ecef;
    color: #2c3e50;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #ced4da;
}

.contact-reminder {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.contact-reminder h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-reminder p {
    color: #5f6368;
    margin-bottom: 8px;
}

.legal-page {
    padding: 60px 0;
    background: #ffffff;
}

.legal-intro {
    font-size: 18px;
    color: #5f6368;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-section p {
    color: #5f6368;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section ul li {
    color: #5f6368;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: #1a73e8;
    text-decoration: none;
}

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

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

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

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

.cookie-table td {
    color: #5f6368;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .card-grid,
    .service-cards,
    .testimonial-grid {
        flex-direction: column;
    }

    .service-card,
    .team-card {
        width: 100%;
    }

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

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

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

    .booking-card {
        padding: 30px 20px;
    }

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