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

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

.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-card {
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85)),
                      url('https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #667eea;
    color: #fff;
}

.cta-outline {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-outline:hover {
    background: #2c3e50;
    color: #fff;
}

.intro-cards {
    padding: 5rem 0;
    background: #fff;
}

.card-grid-3 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.card-grid-3 > * {
    flex: 1;
    min-width: 280px;
}

.feature-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature-card p {
    color: #6c757d;
    line-height: 1.7;
}

.story-section {
    padding: 5rem 0;
    background: #fff;
}

.card-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.split-content {
    flex: 1;
}

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

.split-content p {
    margin-bottom: 1.25rem;
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-highlight {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
}

.card-grid-2 {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.card-grid-2 > * {
    flex: 1;
    min-width: 300px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card-content {
    padding: 2rem;
}

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

.service-card-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.cta-service {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #5568d3;
}

.view-all-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-cards {
    padding: 5rem 0;
    background: #fff;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.testimonial-card p {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

.why-choose {
    padding: 5rem 0;
    background: #f8f9fa;
}

.benefit-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.benefit-card p {
    color: #6c757d;
    line-height: 1.7;
}

.booking-card {
    padding: 5rem 0;
    background: #fff;
}

.booking-wrapper {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.booking-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.booking-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.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: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.cta-submit {
    width: 100%;
    padding: 1.25rem;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cta-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.trust-badges {
    padding: 3rem 0;
    background: #f8f9fa;
}

.card-grid-4 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.card-grid-4 > * {
    flex: 1;
    min-width: 200px;
}

.badge-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.badge-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.badge-card p {
    font-weight: 600;
    color: #2c3e50;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-cta-button {
    display: block;
    padding: 1rem 2rem;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.main-footer {
    background: #2c3e50;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-cookie-reject:hover {
    background: #fff;
    color: #2c3e50;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 5rem 0 3rem;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.services-detail {
    padding: 5rem 0;
    background: #f8f9fa;
}

.service-detail-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

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

.service-detail-content {
    padding: 2.5rem;
}

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

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #6c757d;
}

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

.package-cards {
    padding: 5rem 0;
    background: #fff;
}

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

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.package-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.package-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f39c12;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.package-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.package-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.package-card.featured ul li::before {
    color: #f39c12;
}

.about-intro {
    padding: 5rem 0;
    background: #fff;
}

.mission-cards {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.value-card p {
    color: #6c757d;
    line-height: 1.7;
}

.team-section {
    padding: 5rem 0;
    background: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

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

.team-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
    color: #2c3e50;
}

.team-role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    padding: 0 1.5rem 1.5rem;
    color: #6c757d;
    line-height: 1.7;
}

.certifications {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.cert-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cert-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.cert-card p {
    color: #6c757d;
    line-height: 1.7;
}

.approach-section {
    padding: 5rem 0;
    background: #fff;
}

.cta-final {
    padding: 5rem 0;
    background: #f8f9fa;
}

.cta-card-centered {
    text-align: center;
    background: #fff;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.cta-card-centered p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact-info {
    padding: 5rem 0;
    background: #fff;
}

.info-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.info-card p {
    color: #6c757d;
    line-height: 1.8;
}

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-content {
    padding: 5rem 0;
    background: #f8f9fa;
}

.quick-links {
    margin-top: 2rem;
}

.quick-links h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.link-item {
    display: block;
    color: #667eea;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.link-item:hover {
    color: #5568d3;
}

.location-map {
    padding: 5rem 0;
    background: #fff;
}

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

.map-card {
    background: #f8f9fa;
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder {
    color: #2c3e50;
}

.map-placeholder p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.map-note {
    color: #6c757d;
    font-size: 1rem;
}

.faq-cards {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.faq-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-card p {
    color: #6c757d;
    line-height: 1.7;
}

.emergency-notice {
    padding: 3rem 0 5rem;
    background: #fff;
}

.notice-card {
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    padding: 2rem;
    border-radius: 8px;
}

.notice-card h3 {
    color: #856404;
    margin-bottom: 0.75rem;
}

.notice-card p {
    color: #856404;
    line-height: 1.7;
}

.thanks-hero {
    padding: 5rem 0;
    background: #f8f9fa;
}

.thanks-card {
    background: #fff;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.service-detail {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.service-detail p {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.step-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.step-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
}

.related-info {
    padding: 5rem 0;
    background: #fff;
}

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

.legal-content {
    padding: 5rem 0;
    background: #fff;
}

.legal-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-card h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #667eea;
}

.legal-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-card ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #6c757d;
    line-height: 1.8;
}

.legal-card a {
    color: #667eea;
    text-decoration: none;
}

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

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

    .hero-overlay p {
        font-size: 1.25rem;
    }

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

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .card-grid-3,
    .card-grid-2,
    .card-grid-4 {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .thanks-card {
        padding: 2rem;
    }

    .step-grid {
        flex-direction: column;
        align-items: center;
    }

    .legal-card {
        padding: 2rem;
    }

    .booking-wrapper {
        padding: 2rem;
    }
}