/* Custom Scrollbar for better UI */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #05070a; }
::-webkit-scrollbar-thumb { background: #1f2328; border-radius: 10px; }

/* Main Container Styles */
.legal-container {
    background-color: #05070a; /* Dark background */
    color: #b0b3b8; /* Readable grey text */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 25px;
    text-align: left;
}

/* Headings */
.legal-container h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.legal-container h2 {
    color: #4ade80; /* Mint Green from your site */
    font-size: 1.8rem;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1f2328;
}

.legal-container h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-top: 30px;
}

.legal-container h4 {
    color: #e0e0e0;
    margin-top: 25px;
}

/* Links & Accents */
.legal-container a {
    color: #4ade80;
    text-decoration: none;
    transition: 0.3s;
}

.legal-container a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

.legal-container strong {
    color: #ffffff; /* Bold text highlight */
}

/* Lists */
.legal-container ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.legal-container li {
    margin-bottom: 15px;
}

/* Back Link Button */
.legal-container .back-link {
    display: inline-block;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-container .back-link:hover {
    color: #4ade80;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-container { padding: 40px 20px; }
    .legal-container h1 { font-size: 2.2rem; }
}

/* Back Icon Button Styling */
.back-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #161b22; /* පේජ් එකට වඩා පොඩ්ඩක් තද පාටක් */
    color: #4ade80; /* ඔයාගේ Mint Green පාට */
    border-radius: 50%; /* රවුම් බටන් එකක් */
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #30363d;
    margin-bottom: 30px; /* පල්ලෙහයින් තියෙන Content එකට ඉඩ තියන්න */
}

/* Mouse එක උඩට ගියාම වෙනස් වෙන විදිහ */
.back-icon-btn:hover {
    background-color: #4ade80;
    color: #05070a; /* Background එකේ කළු පාට */
    transform: translateX(-5px); /* වමට පොඩ්ඩක් මූව් වෙනවා */
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
}
