.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}
.main-content {
    flex: 3;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.sidebar {
    flex: 1;
}
h1{
text-align:center;
color:#005a9e;
}
h2 {
    color: #005a9e;
}
.main-content p { text-align: justify; }
.meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}
.highlight-box {
    background: #e8f2ff;
    padding: 15px;
    border-left: 4px solid #0a2a43;
    margin: 20px 0;
	text-align:justify;
}
.sidebar-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	width:300px;
}
.sidebar-card h3 {
    margin-top: 0;
}
.cta {
    background: #ffc857;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 30px;
}

/* AUTHOR BOX */
.author-box {
    display: flex;
    align-items: center;
    background: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}
.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
}
.author-info h4 {
    margin: 0 0 5px 0;
    color: #0a2a43;
}
.author-info p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

footer {
    background: #0a2a43;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    .author-box img {
        margin-bottom: 15px;
    }
}
 .btn-primary {
    display: inline-block;
    background: #0a7a32;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
		 ul.checklist li::before{content:"✔";color:#0b5;margin-right:8px}