* {
    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: #2c3e50;
    background-color: #ffffff;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4a5568;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5a7c6f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #4a6c5f;
}

.intro-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.features-split {
    display: flex;
    align-items: stretch;
}

.features-split.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.feature-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.feature-content p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

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

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.125rem;
    color: #4a5568;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card-content p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a7c6f;
    margin-bottom: 1.25rem;
}

.select-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background-color: #5a7c6f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #4a6c5f;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-section.hidden {
    display: none;
}

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

.form-container h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.selected-service-display {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
}

.selected-service-display span {
    font-weight: 700;
    color: #5a7c6f;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #5a7c6f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #5a7c6f;
}

.testimonial p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.125rem;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 0.9375rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.875rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9375rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #5a7c6f;
    color: #ffffff;
}

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

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

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

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: #ffffff;
    text-align: center;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-wrapper p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.split-content {
    display: flex;
    align-items: stretch;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left {
    padding: 4rem 3rem;
    background-color: #f8f9fa;
}

.content-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-left p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.content-right {
    position: relative;
    overflow: hidden;
}

.content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
    font-size: 1.0625rem;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5a7c6f;
    font-weight: 700;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.team-member {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    max-width: 500px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member .role {
    font-size: 0.9375rem;
    color: #5a7c6f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #5a7c6f;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #5a7c6f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.page-hero-simple {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero-simple p {
    font-size: 1.25rem;
    color: #4a5568;
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-split {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

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

.service-pricing {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-label {
    font-size: 1rem;
    color: #4a5568;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #5a7c6f;
}

.service-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #5a7c6f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: #4a6c5f;
}

.service-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.services-cta-final h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta-final p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #5a7c6f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #4a6c5f;
}

.contact-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.contact-info-panel {
    flex: 1;
    padding: 4rem 3rem;
}

.contact-info-panel h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info-panel p {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    line-height: 1.8;
}

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
}

.contact-item p.no-click {
    user-select: text;
    cursor: text;
}

.contact-note {
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #5a7c6f;
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.9375rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.contact-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.8;
}

.selected-service-info {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.selected-service-info p {
    margin: 0;
    font-size: 1.0625rem;
    color: #4a5568;
}

.selected-service-info strong {
    color: #5a7c6f;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5568;
}

.next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5a7c6f;
    font-weight: 700;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: #5a7c6f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #5a7c6f;
    text-decoration: none;
    border: 2px solid #5a7c6f;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

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

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-container a {
    color: #5a7c6f;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .features-split,
    .split-content,
    .service-split,
    .contact-layout {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right,
    .feature-image,
    .feature-content,
    .content-left,
    .content-right,
    .service-info,
    .service-visual,
    .contact-info-panel,
    .contact-visual {
        flex: 1 1 100%;
    }

    .hero-right,
    .feature-image,
    .content-right,
    .service-visual,
    .contact-visual {
        min-height: 400px;
    }
}

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

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .intro-text h2,
    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-content h3 {
        font-size: 1.5rem;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }
}