

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}



/* Main Content Shared Styles */
main {
    padding-top: 100px;
    padding-bottom: 60px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1F2C; /* Dark color */
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 18px;
}

/* Blog Page Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #8B5CF6; /* Purple color */
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card h2 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
}

/* About Us Page Styles */
.about-content {
    /* max-width: 900px; */
    margin: 0 auto;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 24px;
    color: #0A2463; /* Purple color */
    margin-bottom: 15px;
}

.about-section p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
}



/* Responsive Styles */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    
    .menu-toggle {
        display: flex;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}