.about-us {
    text-align: center;
    background-color: #327fc7;
   background-image: url('../Images/pagebg.png'),url('../Images/pin.png'); 
    width: 100vw; 
    height: 20%;
    color: white;
    padding: 20px 10px; 
    box-sizing: border-box; 
    border: none;
}
.about-us h1 {
    font-size: 2.5em; 
    margin-bottom: 20px;
    color: #f7f6f4; 
padding-top: 20px;
    border-left: none;
    border-right: none;
}

.about-us p {
    font-size: 1.2em; 
    line-height: 1.5; 
    color: #fcfeff;
}
@media screen and (max-width: 600px){
    .about-us {
        border: none;
        border-bottom-right-radius: 0;
        height: 50%;
    }
    .about-us h1 {
        font-size: 1.5em;
       border: none;
    }
    .about-us p{
        font-size: 1em;
        text-align: justify;
    }
}
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.blog-wrapper {
    display: flex;
    gap: 20px;
}

.left-column {
    flex: 2; 
}

.post-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
}

.post-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.post-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
}

.post-content {
    font-size: 1rem;
    margin-bottom: 20px;
}

.related-posts {
    margin-top: 30px;
}

.related-posts h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #222;
}

.related-post-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.related-post-item img {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
}

.related-post-item a {
    font-size: 1rem;
    color: #2685c5;
    text-decoration: none;
}

.related-post-item a:hover {
    text-decoration: underline;
}

.right-column {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.author-section {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f7f7f7;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.author-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.author-section p {
    font-size: 0.9rem;
    color: #555;
}

.subscribe-section {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f7f7f7;
}

.subscribe-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.subscribe-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscribe-section input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 80%;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.subscribe-section button {
    padding: 10px 20px;
    background-color: #2685c5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe-section button:hover {
    background-color: #346e6b;
}

@media (max-width: 768px) {
    .blog-wrapper {
        flex-direction: column;
    }

    .left-column, .right-column {
        flex: 1;
    }

    .related-post-item img {
        width: 50px;
        height: 50px;
    }
}
