* {
    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 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #e74c3c;
    color: white;
}

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

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.header-left {
    display: flex;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #2c3e50;
    color: white;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: #c0392b;
}

.hero-image {
    flex: 1;
    background-color: #95a5a6;
    overflow: hidden;
}

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

.intro-alternate {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-content {
    flex: 1;
    padding: 0 3rem;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.problem-section {
    background-color: #34495e;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

.problem-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.problem-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.solution-split {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-content {
    flex: 1;
    padding: 0 3rem;
}

.solution-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.solution-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.solution-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-cards {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.services-cards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e74c3c;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.btn-select {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
}

.testimonials-flow {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-flow h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-item {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #7f8c8d;
    font-style: normal;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 2rem;
    color: #555;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #2c3e50;
    color: white;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #e74c3c;
}

.footer-col p,
.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
    display: block;
}

.footer-col a:hover {
    color: #e74c3c;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2c2c2c;
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #7f8c8d;
}

.page-hero {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero-content-center p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
}

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

.story-content {
    flex: 1;
    padding: 0 3rem;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.value-item p {
    line-height: 1.7;
    color: #555;
}

.team-alternate {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-content {
    flex: 1;
    padding: 0 3rem;
}

.team-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
}

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

.approach-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.cta-about {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #e74c3c;
    color: white;
}

.cta-about h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
    background-color: #2c3e50;
    color: white;
}

.services-detailed {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: #34495e;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-detail-content li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

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

.btn-reserve {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-reserve:hover {
    background-color: #2980b9;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    overflow: hidden;
    border-radius: 8px;
    max-height: 400px;
}

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

.services-info {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.services-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-item p {
    line-height: 1.7;
    color: #555;
}

.cta-services {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #34495e;
    color: white;
}

.cta-services h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #c0392b;
}

.contact-layout {
    display: flex;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.contact-block p {
    line-height: 1.8;
    color: #555;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 1.5rem;
}

.map-overlay p {
    margin: 0;
    line-height: 1.6;
}

.contact-questions {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-questions h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.questions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.question-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.question-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.question-item p {
    line-height: 1.7;
    color: #555;
}

.contact-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.btn-contact {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #2980b9;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details p {
    line-height: 1.7;
    color: #555;
}

.thanks-next {
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-next p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-date {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-content li {
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #555;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-alternate,
    .solution-split,
    .about-story,
    .team-alternate,
    .service-detail,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-text,
    .intro-content,
    .solution-content,
    .story-content,
    .team-content,
    .service-detail-content,
    .contact-info {
        padding: 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .cards-container {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

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