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

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

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

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

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

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

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

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

.card-grid-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255,255,255,0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.intro-cards {
    margin: 32px 0;
}

.card-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.info-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.services-preview {
    padding: 48px 0;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.service-image {
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.service-details {
    padding: 28px;
}

.service-details h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-details p {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px 28px;
    background-color: #667eea;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.booking-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 56px 48px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 48px auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 16px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.testimonials-cards {
    padding: 48px 0;
}

.testimonials-cards h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-left: 4px solid #667eea;
}

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

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

.why-choose-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.why-content {
    flex: 1.5;
}

.why-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #2c3e50;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 28px;
    font-weight: 800;
    color: #667eea;
    min-width: 48px;
}

.benefit-text h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.why-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-card {
    background: #2c3e50;
    color: #ffffff;
    padding: 56px 24px 24px;
    margin-top: 64px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background-color: #e1e8ed;
    color: #2c3e50;
}

.cookie-reject:hover {
    background-color: #cbd4dc;
}

.page-hero-card {
    text-align: center;
    padding: 64px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #ffffff;
}

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

.page-hero-card p {
    font-size: 18px;
    opacity: 0.95;
}

.about-story-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.story-content {
    flex: 1.5;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-cards {
    padding: 32px 0;
}

.values-cards h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-top: 4px solid #667eea;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.approach-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.approach-card h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.team-commitment-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.commitment-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #2c3e50;
}

.commitment-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.cta-card {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 64px 48px;
    border-radius: 16px;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.services-detail-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f0f0;
    min-height: 400px;
}

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

.service-detail-content {
    flex: 1.2;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.additional-services-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.additional-services-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.additional-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.additional-item {
    flex: 1;
    min-width: 240px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.additional-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.additional-item p {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
}

.service-notes-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.service-notes-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-notes-card ul {
    list-style-position: inside;
    font-size: 15px;
    line-height: 2;
    color: #5a6c7d;
}

.booking-cta-card {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 64px 48px;
    border-radius: 16px;
    color: #ffffff;
}

.booking-cta-card h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.booking-cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.contact-info-section {
    padding: 32px 0;
}

.contact-cards-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.non-clickable-email {
    font-weight: 600;
    color: #2c3e50;
    user-select: text;
}

.email-note {
    font-size: 13px;
    margin-top: 8px;
    color: #95a5a6;
}

.schedule-table {
    margin-top: 16px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e1e8ed;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row .day {
    font-weight: 600;
    color: #2c3e50;
}

.schedule-row .time {
    color: #5a6c7d;
}

.how-to-reach-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.how-to-reach-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.directions-content {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.direction-option {
    flex: 1;
    min-width: 280px;
}

.direction-option h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.direction-option p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.appointment-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.appointment-info-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
}

.appointment-info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.faq-contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.faq-contact-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-hero-card {
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #ffffff;
}

.thanks-icon {
    font-size: 96px;
    margin-bottom: 24px;
    background: #ffffff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: #667eea;
}

.thanks-hero-card h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

.thanks-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

.thanks-content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.thanks-message h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

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

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

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.selected-service-info {
    padding: 20px;
    background: #f0f3ff;
    border-radius: 8px;
    text-align: center;
    margin-top: 24px;
}

.selected-service-info p {
    font-size: 16px;
    color: #2c3e50;
}

.selected-service-info span {
    font-weight: 700;
    color: #667eea;
}

.thanks-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.thanks-info-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info-card ul {
    list-style-position: inside;
    font-size: 15px;
    line-height: 2;
    color: #5a6c7d;
}

.thanks-cta-card {
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.thanks-cta-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c3e50;
}

.thanks-cta-card p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 28px;
}

.thanks-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #e1e8ed;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.legal-page {
    max-width: 900px;
}

.legal-content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 16px 0 8px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 12px 0 12px 24px;
    list-style-type: disc;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-section strong {
    color: #2c3e50;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid #e1e8ed;
    text-align: center;
    font-size: 14px;
    color: #95a5a6;
}

.url-display {
    color: #667eea;
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e1e8ed;
}

.cookie-table td {
    padding: 12px;
    font-size: 14px;
    color: #5a6c7d;
    border-bottom: 1px solid #e1e8ed;
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
        padding: 48px 32px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

    .card-row,
    .services-cards,
    .testimonial-grid,
    .values-grid,
    .contact-cards-grid {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .why-choose-card,
    .about-story-card {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

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

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

    .section-header h2,
    .page-hero-card h1 {
        font-size: 32px;
    }

    .thanks-hero-card h1 {
        font-size: 32px;
    }
}