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

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

.main-nav {
    background-color: #1a1a1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 20px 0;
}

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

.nav-menu li {
    margin-left: 35px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 20px 0;
    display: block;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    background-color: #fff;
    padding: 70px 20px;
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    color: #555;
}

.features-section {
    background-color: #f5f7fa;
    padding: 90px 20px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1 1 350px;
    max-width: 380px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.feature-card h3 {
    padding: 20px 25px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.feature-card p {
    padding: 0 25px 25px;
    color: #666;
    font-size: 16px;
}

.services-overview {
    background-color: #fff;
    padding: 80px 20px;
}

.services-overview h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.services-overview p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background-color: #f9fafb;
    border-left: 5px solid #3498db;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.service-item:hover {
    background-color: #f0f4f8;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    font-size: 16px;
}

.service-price {
    text-align: right;
    flex-shrink: 0;
    margin-left: 30px;
}

.service-price .price {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #3498db;
}

.service-price .unit {
    display: block;
    font-size: 14px;
    color: #888;
}

.booking-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 90px 20px;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.booking-intro {
    text-align: center;
    margin-bottom: 40px;
}

.booking-intro h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.booking-intro p {
    color: #666;
    font-size: 17px;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    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: #3498db;
}

.submit-button {
    background-color: #3498db;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-section {
    background-color: #f5f7fa;
    padding: 80px 20px;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.testimonials {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.testimonial {
    background-color: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 320px;
    max-width: 380px;
}

.testimonial p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial .author {
    display: block;
    font-weight: 600;
    color: #3498db;
    font-size: 15px;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 50px 20px 20px;
}

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p {
    color: #aaa;
    font-size: 14px;
}

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

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

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

.footer-column ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #3498db;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cookie-accept {
    background-color: #2ecc71;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.cookie-reject {
    background-color: #555;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #444;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.header-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 20px;
    background-color: #fff;
}

.about-intro .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;
}

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

.about-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

.values-section {
    background-color: #f5f7fa;
    padding: 80px 20px;
}

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

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.value-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 320px;
    max-width: 380px;
}

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

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

.team-section {
    background-color: #fff;
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.team-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.team-image {
    max-width: 1200px;
    margin: 40px auto;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

.history-section {
    background-color: #f5f7fa;
    padding: 80px 20px;
}

.history-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.history-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.approach-section {
    background-color: #fff;
    padding: 80px 20px;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.approach-steps {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.step {
    background-color: #f9fafb;
    padding: 35px;
    border-radius: 8px;
    border-top: 4px solid #3498db;
    flex: 1 1 240px;
    max-width: 280px;
}

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

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

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1 1 450px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

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

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

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

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

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #666;
    font-size: 16px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 18px;
}

.service-detail-price {
    background-color: #f5f7fa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: bold;
    color: #3498db;
    display: block;
    margin-bottom: 5px;
}

.price-note {
    font-size: 14px;
    color: #888;
    display: block;
}

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.services-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 70px 20px;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.services-cta-section p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button-large {
    display: inline-block;
    background-color: #fff;
    color: #667eea;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-main {
    padding: 70px 20px;
    background-color: #fff;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-block {
    text-align: center;
    margin-bottom: 60px;
}

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

.contact-info-block p {
    font-size: 18px;
    color: #666;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin-bottom: 60px;
}

.contact-item {
    flex: 1 1 280px;
    max-width: 350px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3498db;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    margin-bottom: 8px;
}

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

.note {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.hours-table td {
    padding: 10px 5px;
    font-size: 16px;
    color: #555;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #333;
}

.location-section {
    background-color: #f5f7fa;
    padding: 80px 20px;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.location-info {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.location-text {
    flex: 1 1 450px;
}

.location-text h3 {
    font-size: 24px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: #2c3e50;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.location-image {
    flex: 1 1 400px;
}

.location-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e0e0e0;
}

.contact-cta {
    background-color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #f9fafb;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 200px;
    max-width: 250px;
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-item p {
    font-size: 16px;
    color: #666;
}

.thanks-info {
    background-color: #f5f7fa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-info p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

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

.button-primary {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.button-secondary {
    display: inline-block;
    background-color: #fff;
    color: #3498db;
    border: 2px solid #3498db;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.button-secondary:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-2px);
}

.legal-page {
    padding: 60px 20px;
    background-color: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

.cookies-table thead {
    background-color: #f5f7fa;
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 16px;
    color: #2c3e50;
    border-bottom: 2px solid #ddd;
}

.cookies-table td {
    padding: 12px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

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

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        margin-left: 0;
        margin-top: 15px;
        text-align: left;
    }

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

    .about-intro .content-wrapper {
        flex-direction: column;
    }

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