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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

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

.navigation {
    background-color: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #e67e22;
}

.nav-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

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

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.85) 0%, rgba(230,126,34,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 700px;
}

.main-content {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.intro-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.philosophy-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #e67e22;
}

.philosophy-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.philosophy-card p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

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

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

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

.services-columns {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.service-item h3 {
    font-size: 22px;
    color: #2c3e50;
    padding: 24px 24px 12px 24px;
}

.service-item p {
    font-size: 15px;
    color: #34495e;
    padding: 0 24px;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    padding: 20px 24px 16px 24px;
}

.service-cta {
    margin: 0 24px 24px 24px;
    padding: 14px 28px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230,126,34,0.3);
}

.testimonial-section {
    padding: 80px 40px;
    background-color: #2c3e50;
}

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

.testimonial-container h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #34495e;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

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

.testimonial-author {
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 600;
}

.booking-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.booking-container h2 {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 16px;
}

.booking-container > p {
    font-size: 18px;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 40px;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.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: 12px 16px;
    border: 1px solid #dce1e4;
    border-radius: 4px;
    font-size: 15px;
    color: #2c3e50;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39,174,96,0.3);
}

.disclaimer-section {
    padding: 40px;
    background-color: #ecf0f1;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

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

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

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

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 16px;
    color: #2c3e50;
}

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

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 24px;
    margin-top: 40px;
}

.content-section h3 {
    font-size: 24px;
    color: #34495e;
    margin-bottom: 16px;
    margin-top: 30px;
}

.content-section p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section ul li,
.content-section ol li {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #e67e22;
}

.value-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
}

.value-card p {
    font-size: 15px;
    color: #34495e;
    line-height: 1.6;
}

.services-detail-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-detail-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #dce1e4;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image {
    width: 100%;
    height: 220px;
    background-color: #ecf0f1;
}

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

.service-detail-content {
    padding: 30px;
}

.service-detail-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-detail-content p {
    font-size: 15px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.service-detail-features {
    list-style: none;
    margin-left: 0;
    margin-bottom: 24px;
}

.service-detail-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    color: #34495e;
}

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info strong {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-home:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230,126,34,0.3);
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .intro-layout {
        flex-direction: column;
    }

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

    .services-columns {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

    .services-detail-grid {
        flex-direction: column;
    }
}