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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

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

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

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

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d63447;
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: #d63447;
    color: #fff;
}

.intro-cards {
    padding: 80px 20px;
    background: #f8f9fa;
}

.intro-cards h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.services-preview {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    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 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #d63447;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

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

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

.booking-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.booking-card {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.booking-card h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.booking-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background: #5568d3;
}

.testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 300px;
    max-width: 360px;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

.cta-banner {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

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

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-button {
    display: block;
    background: #d63447;
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 6px 25px rgba(214, 52, 71, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(214, 52, 71, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #555;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #667eea;
    color: #fff;
}

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

.cookie-btn.reject {
    background: #e0e0e0;
    color: #333;
}

.cookie-btn.reject:hover {
    background: #d0d0d0;
}

.cookie-link {
    color: #667eea;
    text-decoration: underline;
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-content {
    padding: 80px 20px;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.philosophy {
    padding: 80px 20px;
    background: #f8f9fa;
}

.philosophy-card {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.point-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.point-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #667eea;
}

.point-card p {
    color: #555;
    line-height: 1.7;
}

.experience-section {
    padding: 80px 20px;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    min-width: 120px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

.stats-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-simple {
    padding: 80px 20px;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-simple p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 35px;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 60px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-header {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: #f8f9fa;
}

.service-detail-image {
    flex: 1;
    max-width: 350px;
}

.service-detail-image img {
    border-radius: 12px;
}

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

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

.price-tag {
    display: inline-block;
    background: #d63447;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-intro {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #667eea;
    font-size: 1.5rem;
    line-height: 1;
}

.service-includes {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.service-includes h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.booking-section-simple {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info-block > p {
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.contact-icon {
    font-size: 2rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.contact-details a {
    color: #667eea;
    text-decoration: underline;
}

.response-time {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
}

.response-time strong {
    color: #667eea;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.map-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #667eea;
}

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

.thanks-section {
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.thanks-details strong {
    color: #667eea;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.thanks-tips {
    background: #fff3cd;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: left;
}

.thanks-tips h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #856404;
}

.thanks-tips ul {
    list-style: none;
}

.thanks-tips ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #856404;
}

.thanks-tips ul li::before {
    content: "→";
    position: absolute;
    left: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: #667eea;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.legal-content {
    padding: 60px 20px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.legal-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.legal-text h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
}

.legal-text p {
    margin-bottom: 20px;
    color: #555;
}

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

.legal-text ul li {
    margin-bottom: 10px;
    color: #555;
}

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 0.85rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .intro-cards h2,
    .section-header h2,
    .page-header h1 {
        font-size: 2rem;
    }

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

    .service-detail-image {
        max-width: 100%;
    }

    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-button {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.8rem;
    }

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

    .service-card,
    .info-card {
        min-width: 100%;
    }

    .booking-card {
        padding: 35px 25px;
    }
}