/* ============================================
   LEGAL PAGES STYLES (Privacy, Terms)
   Matching Mackie Mobile theme
============================================= */

/* ============================================
   HERO SECTION
============================================= */
.legal-hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.legal-hero .wave-divider svg {
    color: var(--bg-white);
}

/* ============================================
   CONTENT SECTION
============================================= */
.legal-content {
    padding: 80px 0 100px;
}

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

.last-updated {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--green);
}

.legal-container h2:first-of-type {
    margin-top: 30px;
}

.legal-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-container strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   LISTS
============================================= */
.check-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.check-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
    font-size: 1.25rem;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bullet-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--green);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* ============================================
   HIGHLIGHT BOXES
============================================= */
.highlight-box {
    background: var(--bg-green);
    border-left: 4px solid var(--text-dark);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
}

.highlight-box p {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
}

.notice-box {
    background: #fff8e6;
    border-left: 4px solid #f0b429;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 12px 12px 0;
}

.notice-box p {
    color: #8a6d00;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   CONTACT BOX
============================================= */
.contact-box {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--text-dark) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.contact-box h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.contact-box .btn {
    background: var(--green);
    color: var(--text-dark);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-box .btn:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
============================================= */
@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 0 80px;
    }
    
    .legal-hero h1 {
        font-size: 2.25rem;
    }
    
    .legal-subtitle {
        font-size: 1.1rem;
    }
    
    .legal-content {
        padding: 60px 0 80px;
    }
    
    .legal-container h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }
    
    .legal-container h3 {
        font-size: 1.15rem;
    }
    
    .highlight-box,
    .notice-box {
        padding: 20px;
    }
    
    .contact-box {
        padding: 40px 25px;
    }
    
    .contact-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-hero h1 {
        font-size: 1.85rem;
    }
    
    .legal-container h2 {
        font-size: 1.35rem;
    }
    
    .check-list li,
    .bullet-list li {
        padding-left: 28px;
    }
}
