/* Basic Styles */
*, *::before, *::after { box-sizing: border-box; }
html { width: 100%; overflow-x: hidden; }
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

/* Header */
.header {
    width: 100%;
    height: 200px;
    background-color: #009174;
    margin: 0;
}

.logo {
    width: 65%;
    margin: 0 auto;
    text-align: left;
}

.logoimg {
    margin-top: 20px;
    margin-left: 20px;
    width: 200px;
}

/* Main Content */
.main {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow-x: hidden;
}

/* Typography */
h1 {
    color: #009174;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #009174;
    padding-bottom: 10px;
}

h2 {
    color: #009174;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #009174;
    padding-left: 15px;
}

h3 {
    color: #666;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

/* Lists */
ul {
    margin: 15px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

table tr:nth-child(even) {
    background-color: #f8f9fa;
}

table tr:hover {
    background-color: #e8f5e8;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

table td:first-child {
    font-weight: bold;
    color: #009174;
    width: 30%;
}

/* Media and long text safety */
img, video, table { max-width: 100%; height: auto; }
p, li, td { word-break: break-word; overflow-wrap: anywhere; }

/* Strong text */
strong {
    color: #009174;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main {
        width: 100%;
        padding: 20px;
    }
    .logo { width: 100%; }
    img, video { max-width: 100%; height: auto; }
    table { display: block; overflow-x: auto; }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    table {
        font-size: 14px;
    }
    
    table td {
        padding: 8px 10px;
    }
}
/* Legacy styles for compatibility */
.bg-theme-light {
    background-color: #2c223c;
}

.text-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

.opacity-70 {
    opacity: .7;
}

.font-400 {
    font-weight: 400;
}

.font-16 {
    font-size: 16px;
}

.font-10 {
    font-size: 10px;
}

.mb-0 {
    margin-bottom: 0;
}

.justify-content-center {
    justify-content: center;
}

.d-flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.align-items-center {
    align-items: center;
}

a {
    touch-action: manipulation;
    color: #5f259f;
    text-decoration: none;
    background-color: transparent;
}

.mt-12 {
    margin-top: 0.75rem;
}

.md\:text-right {
    text-align: right;
}