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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c7a7b;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2c7a7b;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c7a7b;
    margin: 3px 0;
    transition: 0.3s;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.hero-card {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 0;
}

.hero-image-wrapper {
    position: relative;
    height: 550px;
    background-color: #e2e8f0;
}

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

.hero-content-card {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.97);
    padding: 45px 55px;
    max-width: 700px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hero-content-card h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-cards {
    padding: 70px 0;
    background-color: #ffffff;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-card {
    background-color: #f7fafc;
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
}

.story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e2e8f0;
}

.story-text {
    padding: 50px 45px;
}

.story-text h2 {
    font-size: 34px;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-showcase {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 55px;
    font-weight: 800;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

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

.service-content h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    color: #718096;
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.detail-item {
    background-color: #e6fffa;
    color: #234e52;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-price {
    font-size: 28px;
    color: #2c7a7b;
    font-weight: 800;
    margin-bottom: 18px;
}

.service-select {
    width: 100%;
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 13px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.service-select:hover {
    background-color: #234e52;
    transform: translateY(-2px);
}

.trust-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.trust-card {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
}

.trust-card h3 {
    font-size: 24px;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

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

.testimonial-card {
    background-color: #e6fffa;
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 4px solid #2c7a7b;
    flex: 1;
    min-width: 300px;
}

.testimonial-text {
    font-size: 16px;
    color: #2d3748;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-card {
    background-color: #f7fafc;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #718096;
    margin-bottom: 35px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
    background-color: #ffffff;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    width: 100%;
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fffbeb;
}

.disclaimer-card {
    background-color: #ffffff;
    padding: 35px 40px;
    border-radius: 10px;
    border-left: 5px solid #d97706;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.disclaimer-card p {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 25px 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

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

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

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

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

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

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

.cookie-accept {
    background-color: #2c7a7b;
    color: #ffffff;
}

.cookie-accept:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.page-hero {
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: #e6fffa;
}

.content-section {
    padding: 60px 0;
}

.content-card-large {
    background-color: #ffffff;
    padding: 50px 45px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.content-card-large h2 {
    font-size: 30px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-card-large p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.card-content-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.value-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    flex: 1;
    min-width: 280px;
}

.value-card h3 {
    font-size: 22px;
    color: #2c7a7b;
    margin-bottom: 14px;
    font-weight: 700;
}

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

.team-section {
    margin-top: 50px;
}

.team-section h2 {
    text-align: center;
    font-size: 34px;
    color: #1a202c;
    margin-bottom: 45px;
    font-weight: 700;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.team-card {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(0,0,0,0.08);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.team-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.team-card h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 6px;
    font-weight: 700;
}

.team-role {
    font-size: 14px;
    color: #2c7a7b;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.7;
}

.services-full {
    padding: 60px 0;
}

.service-card-detailed {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

.service-card-detailed .service-image-wrapper {
    flex: 1;
    min-width: 300px;
    height: auto;
    min-height: 320px;
}

.service-card-detailed .service-content {
    flex: 1.2;
    min-width: 350px;
    padding: 45px 40px;
}

.service-card-detailed h2 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card-detailed p {
    font-size: 16px;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.spec-value {
    font-size: 16px;
    color: #2d3748;
    font-weight: 700;
}

.service-price-large {
    font-size: 36px;
    color: #2c7a7b;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.cta-card-center {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cta-card-center h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-card-center p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button-large {
    display: inline-block;
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button-large:hover {
    background-color: #234e52;
    transform: translateY(-2px);
}

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 45px 40px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 320px;
}

.contact-info-card h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
}

.contact-additional {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background-color: #ffffff;
    padding: 30px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}

.info-box h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-box p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.thanks-card h1 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #e6fffa;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 35px;
    font-size: 16px;
    color: #234e52;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 26px;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.steps-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c7a7b;
    font-weight: bold;
    font-size: 20px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c7a7b;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #234e52;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: #4a5568;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #2d3748;
    transform: translateY(-2px);
}

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 25px;
    font-weight: 800;
}

.legal-intro {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.8;
}

.legal-page h2 {
    font-size: 26px;
    color: #2d3748;
    margin-top: 40px;
    margin-bottom: 18px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 600;
}

.legal-page p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page li {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-page a {
    color: #2c7a7b;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #234e52;
}

.legal-date {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
    font-size: 14px;
    color: #a0aec0;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 20px 25px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content-card {
        padding: 30px 25px;
        bottom: 30px;
    }

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

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

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

    .service-card-detailed {
        flex-direction: column;
    }

    .service-card-detailed .service-image-wrapper {
        height: 250px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

    .card-content-split {
        flex-direction: column;
    }

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