/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #906bff;
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: #906bff;
    border: 2px solid #906bff;
}

.btn-secondary:hover {
    background-color: #906bff;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #100c1c;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text h3 {
    margin-bottom: 10px;
    color: #906bff;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #100c1c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #906bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #100c1c 0%, #906bff 100%);
    z-index: -1;
}

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

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 20px;
    color: #100c1c;
}

/* Company Info Section */
.company-info {
    background-color: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    color: #906bff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Achievements Section */
.achievements {
    background-color: #100c1c;
    color: white;
}

.achievements .section-header h2 {
    color: white;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.achievement-item {
    padding: 20px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #906bff;
    margin-bottom: 10px;
}

.achievement-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Special Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card.featured {
    border: 3px solid #906bff;
    transform: scale(1.05);
}

.offer-card.featured::before {
    content: "Beliebt";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #906bff;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #100c1c;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #906bff;
    margin-bottom: 20px;
}

.offer-card p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.offer-card ul {
    list-style: none;
    text-align: left;
}

.offer-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.offer-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #906bff;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item svg {
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #100c1c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.reviewer {
    font-weight: bold;
    color: #906bff;
}

/* Footer */
.footer {
    background-color: #100c1c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #906bff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: #906bff;
    margin-bottom: 15px;
}

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

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

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

.footer-section a:hover {
    color: #906bff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #906bff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    background-color: #100c1c;
    transform: scale(1.1);
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offer-card.featured {
        transform: scale(1);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .social-links {
        justify-content: center;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr !important;
    }
    body {
    word-break: break-word;}
    .legal-document {
    padding: 50px 16px !important;}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar, .cookie-banner, .hamburger {
        display: none;
    }
    
    .hero {
        height: auto;
        page-break-after: always;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #100c1c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #100c1c 0%, #906bff 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

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

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

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #100c1c;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-card h3 {
    font-size: 1.8rem;
    color: #100c1c;
    margin: 20px 0 15px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-avatar {
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #100c1c;
    margin-bottom: 5px;
}

.role {
    color: #906bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.certifications {
    margin-top: 20px;
}

.cert {
    display: inline-block;
    background: #906bff;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin: 3px;
}

/* Certifications & Equipment */
.certifications-equipment {
    padding: 80px 0;
}

.ce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cert-list, .equipment-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cert-item, .equipment-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cert-item h3, .equipment-item h3 {
    color: #100c1c;
    margin-bottom: 8px;
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-category {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-header h3 {
    font-size: 1.8rem;
    color: #100c1c;
    margin: 15px 0 10px;
}

.category-rating {
    color: #ffd700;
    font-weight: bold;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #906bff;
    transform: translateY(-2px);
}

.service-item h4 {
    color: #906bff;
    margin-bottom: 10px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #100c1c;
    margin-top: 10px;
}

.service-duration {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Service Packages */
.service-packages {
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.package-card.featured {
    border: 3px solid #906bff;
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 1.8rem;
    color: #100c1c;
    margin-bottom: 15px;
}

.package-price {
    font-size: 3rem;
    font-weight: bold;
    color: #906bff;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.package-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #906bff;
    font-weight: bold;
}

.package-duration {
    font-style: italic;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2.2rem;
    color: #100c1c;
    margin-bottom: 20px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.method-info h3 {
    color: #906bff;
    margin-bottom: 10px;
}

.method-info a {
    color: #100c1c;
    text-decoration: none;
    font-weight: bold;
}

.method-info span {
    color: #666;
    font-size: 14px;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    display: none;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-placeholder {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-info h3 {
    color: #906bff;
    margin-bottom: 15px;
}

.opening-hours {
    margin-top: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #906bff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 40px;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #100c1c;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.confirmation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-item h3 {
    color: #906bff;
    margin-bottom: 8px;
}

/* Next Steps */
.next-steps-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

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

.step-content h3 {
    color: #100c1c;
    margin-bottom: 10px;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #906bff 0%, #100c1c 100%);
    color: white;
}

.emergency-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.emergency-phone {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: block;
    margin: 15px 0;
}

.emergency-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-preview-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-preview-item h3 {
    color: #100c1c;
    margin: 15px 0 10px;
}

.price {
    color: #906bff;
    font-weight: bold;
    font-size: 1.2rem;
}

.services-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #100c1c 0%, #906bff 100%);
    color: white;
    text-align: center;
}

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

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #906bff;
    font-weight: bold;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Legal Content Styles */
.legal-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    line-height: 1.7;
}

.last-updated {
    background: #906bff;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
    display: inline-block;
}

.legal-document h2 {
    color: #100c1c;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #906bff;
    padding-bottom: 10px;
}

.legal-document h3 {
    color: #906bff;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document ul {
    margin: 15px 0 15px 30px;
}

.legal-document li {
    margin-bottom: 8px;
}

.contact-box {
    background: #f8f9fa;
    border-left: 4px solid #906bff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-table th {
    background: #906bff;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-settings-button {
    text-align: center;
    margin: 30px 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ce-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-content h1 {
        font-size: 2.2rem;
    }

    .confirmation-details {
        grid-template-columns: 1fr;
    }
}