* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #fefefe;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 100vw;
    margin: auto;
    padding: 0px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffe9d9;
    padding: 10px 20px;
    height: 10vh;
}

.logo img {
    height: 70px;
    width: 173px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #f04e23;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 5px;
}

.nav-link.active {
    border-bottom: 2px solid #f04e23;
    font-weight: 600;
}

.nav-link:hover {
    text-decoration: underline;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon img,
.profile-icon img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

main {
    padding: 20px;
    min-height: 80vh;
    background-color: #fff;
    background-image: url('/Logos/6943.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 10px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-section,
.mission-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vision-section h2,
.mission-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.vision-section p,
.mission-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.blogs-section {
    text-align: center;
    margin-bottom: 30px;
}

.blogs-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.blogs-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: orange;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 150px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    text-align: left;
}

.blog-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-date {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

footer {
    margin-bottom: 0px;
    padding: 15px 20px;
    height: 10vh;
    background-color: #ffe9d9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.footer-left,
.footer-center,
.footer-right {
    margin-top: 0px;
}

.footer-section p {
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-left .social-links img {
    width: 25px;
    margin: 0 5px;
}

.footer-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.footer-center a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.footer-center a:hover {
    color: #f04e23;
}

.footer-right p {
    margin-bottom: 10px;
    font-weight: bold;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.footer-right img {
    width: 100px;
    margin: 5px 5px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    header {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    .vision-section,
    .mission-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .vision-section h2,
    .mission-section h2,
    .blogs-section h2 {
        font-size: 24px;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    footer {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .footer-left {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .vision-section,
    .mission-section {
        padding: 15px;
    }
    
    .vision-section h2,
    .mission-section h2,
    .blogs-section h2 {
        font-size: 20px;
    }
    
    .vision-section p,
    .mission-section p {
        font-size: 14px;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .user-actions {
        gap: 10px;
    }
}