/* ===== LEGAL PAGES ===== */
body {
    counter-reset: section;
}

.legal-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--light-green, #e8f5e9) 0%, #f0f9f4 100%);
}

.legal-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1 {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

.legal-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green, #1a5d3e), #4caf7d);
    border-radius: 2px;
}

.legal-hero .lead {
    color: #5a7266;
    font-size: 1.2rem;
}

.legal-content {
    padding: 60px 0 80px;
    background: #fff;
}

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

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e8e3;
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: var(--primary-green, #1a5d3e);
    margin-bottom: 1rem;
}

.legal-section h3 {
    margin: 2rem 0 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.numbered-title {
    counter-increment: section;
    color: var(--primary-green, #1a5d3e);
    font-weight: 600;
}

.numbered-title::before {
    content: counter(section) ". ";
    font-weight: 700;
}

.contact-box {
    background: linear-gradient(135deg, rgba(26, 93, 62, 0.03), rgba(76, 175, 125, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0 1.5rem;
    border: 1px solid #e0e8e3;
}

.contact-box p {
    margin-bottom: 0;
}

.price-list {
    background: linear-gradient(135deg, rgba(26, 93, 62, 0.05), rgba(76, 175, 125, 0.08));
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-green, #1a5d3e);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 93, 62, 0.1);
}

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

.price-name {
    font-weight: 500;
}

.price-value {
    font-weight: 600;
    color: var(--primary-green, #1a5d3e);
    font-size: 1.1rem;
}

.legal-note {
    font-style: italic;
    color: #5a7266;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e8e3;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 50px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
}

.footer-links {
    list-style: none;
    width: 100%;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 4px 0;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    justify-content: center;
}

.contact-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    flex-shrink: 0;
}

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

.footer-bottom p:first-child {
    margin-bottom: 8px;
}

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

    .footer {
        padding: 50px 20px 25px;
    }
}
