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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.3rem 0.8rem;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    min-height: 500px;
}

.hero-background {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(99, 102, 241, 0.75));
    display: flex;
    align-items: center;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.2;
}

.hero-card p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: #475569;
}

.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.intro-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.intro-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.intro-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.intro-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.intro-card p {
    color: #64748b;
    line-height: 1.7;
}

.services-preview-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.services-preview-section h2,
.services-detailed-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.service-content {
    padding: 1.8rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.2rem;
}

.select-service-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1d4ed8;
}

.booking-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: #f9fafb;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.booking-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    padding: 1rem;
    background-color: #dbeafe;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1e40af;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    padding: 1rem;
    background-color: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
    background-color: #059669;
}

.submit-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.why-us-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.why-us-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.why-us-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e5e7eb;
}

.why-us-content {
    flex: 1;
}

.why-us-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.main-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    text-align: center;
    color: #94a3b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

.page-header {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

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

.services-detailed-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
}

.service-detail-image {
    flex: 0 0 40%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

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

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

.price-badge {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 6px;
}

.service-meta span {
    color: #64748b;
    font-size: 0.95rem;
}

.cta-bottom-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.cta-card {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-card .cta-button {
    background-color: #ffffff;
    color: #2563eb;
}

.cta-card .cta-button:hover {
    background-color: #f1f5f9;
    color: #1d4ed8;
}

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

.about-intro-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-intro-content p {
    margin-bottom: 1.2rem;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-intro-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #e5e7eb;
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.team-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.team-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1e293b;
}

.team-role {
    padding: 0 1.5rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-card p:not(.team-role) {
    padding: 0 1.5rem 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.stats-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.stat-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 3rem;
}

.contact-info-card {
    flex: 1;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 12px;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

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

.email-display {
    color: #64748b;
    cursor: default;
}

.contact-map-card {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    background-color: #e5e7eb;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    color: #ffffff;
    border-radius: 0 0 12px 12px;
}

.location-info-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.location-info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1e293b;
}

.location-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.location-card p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.contact-cta-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-cta-card {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

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

.contact-cta-card p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-cta-card .cta-button {
    background-color: #ffffff;
    color: #2563eb;
}

.contact-cta-card .cta-button:hover {
    background-color: #f1f5f9;
}

.thanks-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

.thanks-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.selected-service-info {
    background-color: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-name-display {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e40af;
    margin-top: 0.5rem;
}

.thanks-content h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: left;
}

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

.secondary-button {
    display: inline-block;
    background-color: #6b7280;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.additional-info-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.additional-info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1e293b;
}

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

.faq-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

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

.legal-page {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

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

.last-updated {
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

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

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

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

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

.legal-content li {
    margin-bottom: 0.6rem;
    color: #475569;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #e5e7eb;
    padding: 0.8rem;
    text-align: left;
}

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1e293b;
}

.cookie-table td {
    color: #475569;
}

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

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

    .intro-cards,
    .services-grid,
    .values-grid,
    .team-grid,
    .stats-grid,
    .next-steps,
    .faq-grid,
    .location-cards {
        flex-direction: column;
    }

    .why-us-layout,
    .about-intro-layout,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-image {
        min-height: 250px;
    }

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

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