/* ============================================
   CSS Variables - Caribbean Color Palette
   ============================================ */
:root {
    --primary-color: #00897b;      /* Turquoise */
    --primary-light: #26c6da;      /* Light Turquoise */
    --primary-dark: #004d40;       /* Dark Turquoise */
    --accent-color: #ff9800;       /* Orange */
    --accent-light: #ffb74d;       /* Light Orange */
    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* ============================================
   Typography
   ============================================ */
h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ============================================
   Navigation Bar
   ============================================ */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-sun {
    font-size: 1.75rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.35rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-right {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .language-selector {
        gap: 0.3rem;
    }

    .lang-btn {
        padding: 0.35rem 0.65rem;
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        gap: 0;
        z-index: 99;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 600px;
}

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

.hero p {
    font-size: 1.2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ============================================
   CTA Button
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button:active {
    transform: translateY(0);
}

/* ============================================
   Sections - General Styling
   ============================================ */
.section {
    padding: 3rem 1rem;
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 1rem;
    }
}

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

.section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Unterschied Section
   ============================================ */
.unterschied {
    background-color: var(--bg-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comparison-item {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.comparison-item.highlight {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.05) 0%, rgba(38, 198, 218, 0.05) 100%);
}

.comparison-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Betreutes Wohnen Plus Section
   ============================================ */
.wohnen-plus {
    background: linear-gradient(135deg, rgba(38, 198, 218, 0.08) 0%, rgba(0, 137, 123, 0.08) 100%);
}

.concept-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
}

.concept-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.flexibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.flex-item h4 {
    margin-bottom: 0.75rem;
}

.flex-item p {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .flexibility-grid {
        grid-template-columns: 1fr;
    }

    .concept-card {
        padding: 1.5rem;
    }
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    background-color: white;
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary-color);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-dark);
}

.service-card p {
    font-size: 0.9rem;
}

.inclusions-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.inclusions-box h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.inclusions-list li {
    padding-left: 1.5rem;
    position: relative;
}

.inclusions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inclusions-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Pricing Section
   ============================================ */
.preise {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 0 0 0 12px;
}

.pricing-card h3 {
    padding: 1.5rem 1.5rem 0;
    color: var(--primary-dark);
}

.features-list {
    padding: 1.5rem;
    flex-grow: 1;
}

.features-list p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    margin-left: 1rem;
}

.pricing-display {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-top: 2px solid var(--border-color);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-light);
    font-size: 0.95rem;
}

.registration {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.pricing-card.premium {
    border-top: 5px solid var(--accent-color);
}

.pricing-card.standard {
    border-top: 5px solid var(--primary-color);
}

.pricing-card.compact {
    border-top: 5px solid var(--primary-light);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-badge {
        display: none;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.kontakt {
    background: linear-gradient(135deg, rgba(0, 137, 123, 0.1) 0%, rgba(38, 198, 218, 0.1) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-info.email {
    cursor: pointer;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }
}

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

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideInUp 0.5s ease-out;
}

.cookie-banner.hidden, .hidden {
    display: none!important;
}

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

.cookie-content {
    flex: 1;
}

.cookie-content h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-link {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--accent-color);
}

.cookie-accept {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookie-accept:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.cookie-accept:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-container {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content h3 {
        font-size: 0.95rem;
    }

    .cookie-content p {
        font-size: 0.85rem;
    }

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

/* ============================================
   Contact Form Consent Checkboxes
   ============================================ */

.form-consents {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.consent-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.consent-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.consent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.consent-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    cursor: pointer;
    vertical-align: top;
    appearance: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background-color: white;
    transition: all 0.3s ease;
}

.consent-checkbox:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.1);
}

.consent-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M13.78 4.22c.29.29.29.77 0 1.06l-7.5 7.5c-.29.29-.77.29-1.06 0l-3.5-3.5c-.29-.29-.29-.77 0-1.06.29-.29.77-.29 1.06 0L5.5 10.44l6.72-6.72c.29-.29.77-.29 1.06 0z"/></svg>');
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.consent-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.2);
}

.checkbox-label {
    display: inline;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    transition: color 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.checkbox-text {
    display: block;
    margin-left: 2.25rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.consent-error {
    background-color: #fee;
    border-left: 4px solid #f00;
    color: #c00;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
    font-weight: 500;
}

.consent-error p {
    margin-bottom: 0;
    color: #c00;
}

/* Responsive Consent Checkboxes */
@media (max-width: 768px) {
    .form-consents {
        padding: 1rem;
    }

    .consent-checkbox {
        width: 16px;
        height: 16px;
        margin-right: 0.5rem;
    }

    .checkbox-text {
        margin-left: 2rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   Legal Pages Styling (AGB, Datenschutz, Impressum)
   ============================================ */

.legal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.legal-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-header .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-list {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.subsection {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.highlight-section {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: calc(1.5rem + 1rem);
}

.highlight {
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.info-section {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-section h2 {
    margin-top: 0;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.info-block {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-block h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.info-block p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.back-to-home {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-back:hover {
    background-color: var(--primary-dark);
}

/* Legal Page Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

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

.footer-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-header {
        padding: 2rem 1rem;
    }

    .legal-header h1 {
        font-size: 1.75rem;
    }

    .legal-content {
        padding: 0 1rem 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .info-section {
        padding: 1.5rem;
    }

    .highlight-section {
        padding: 1rem 1rem 1rem calc(1rem + 1rem);
    }

    .btn-back {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
