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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

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

.hero-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cta-primary {
    background-color: #27ae60;
    color: #fff;
}

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

.cta-secondary {
    background-color: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #fff;
}

.intro-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.intro-image {
    flex: 1;
}

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

.intro-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-text h2 {
    font-size: 36px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.link-inline {
    color: #27ae60;
    font-weight: 600;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #229954;
}

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

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-info h3 {
    font-size: 22px;
    color: #2c3e50;
}

.service-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.btn-select-service {
    padding: 12px 25px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.split-feature {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 40px;
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
}

.feature-text h2 {
    font-size: 38px;
    color: #2c3e50;
}

.feature-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    color: #555;
}

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

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

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

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

.testimonial p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.cta-section {
    background-color: #2c3e50;
    padding: 80px 20px;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.form-section {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    gap: 60px;
}

.form-container {
    flex: 1.2;
}

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 15px 40px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.form-info h3 {
    font-size: 24px;
    color: #2c3e50;
}

.form-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.info-split {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.info-image {
    flex: 1;
}

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

.info-text {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-text h2 {
    font-size: 32px;
    color: #2c3e50;
}

.info-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

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

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

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

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

.footer-column p,
.footer-column li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #bdc3c7;
}

.footer-column a {
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

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

.page-hero {
    background-color: #2c3e50;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.split-content {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 40px;
}

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 40px;
}

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.content-text h2 {
    font-size: 36px;
    color: #2c3e50;
}

.content-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

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

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

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

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

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

.team-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

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

.team-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.team-note {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.team-note p {
    font-size: 16px;
    color: #555;
}

.cta-about {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-about h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

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

.service-detail-content {
    display: flex;
    gap: 60px;
}

.service-detail-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-detail-text h2 {
    font-size: 36px;
    color: #2c3e50;
}

.service-detail-text h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 15px;
}

.service-detail-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.service-detail-text ul {
    padding-left: 20px;
}

.service-detail-text li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.service-detail-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

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

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

.price-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 10px 0;
}

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

.price-note {
    font-size: 14px;
    color: #777;
}

.booking-cta {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 20px;
    text-align: center;
    background-color: #2c3e50;
    border-radius: 8px;
}

.booking-cta h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.booking-cta p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
}

.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    gap: 60px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

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

.contact-note {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.contact-note p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-details {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

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

.detail-box h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.detail-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.visit-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.visit-content {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.visit-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
}

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

.thanks-hero {
    background-color: #27ae60;
    padding: 100px 20px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

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

.thanks-info {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

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

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

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

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

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

.thanks-explore {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.explore-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.explore-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.explore-card p {
    font-size: 15px;
    color: #666;
}

.thanks-note {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.note-content {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.note-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

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

.legal-content {
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
}

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

.legal-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.legal-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.legal-content a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #229954;
}

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

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

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

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

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-split {
        flex-direction: column;
    }

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

    .intro-text {
        padding: 30px 20px;
    }

    .split-feature {
        flex-direction: column;
    }

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

    .form-section {
        flex-direction: column;
    }

    .info-split {
        flex-direction: column;
    }

    .info-text {
        padding: 30px;
    }

    .split-content,
    .split-content-reverse {
        flex-direction: column;
    }

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

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

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

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

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

    .cta-buttons {
        flex-direction: column;
    }
}