/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Legal Content ===== */
.legal-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-text > p:nth-of-type(1) {
    font-size: 13px;
    color: #999999;
    margin-bottom: 40px;
}

.legal-text h3 {
    font-size: 18px;
    color: #1a5f4a;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-text p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-text li {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.legal-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5f4a;
    font-weight: 700;
}

.legal-text a {
    color: #1a5f4a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #2d8659;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .legal-text h2 {
        font-size: 24px;
    }

    .legal-text h3 {
        font-size: 16px;
    }

    .legal-text p,
    .legal-text li {
        font-size: 13px;
    }
}
