.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background for content */
}

.content-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
    font-family: "Cairo", serif;

}

html, body {
    background: none;
    background-size: cover;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #f0f0f0; /* Fallback color */
    font-family: "Cairo", serif;

}

.content-image {
    margin-bottom: 2rem;
    text-align: center;
    min-height: 300px; /* Ensure a consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5; /* Fallback background color */
    font-family: "Cairo", serif;

}

.content-image img {
    width: 100%;
    max-width: 100%;
    height: 300px; /* Fixed height to match container */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center;
    min-width: 300px; /* Ensure a minimum width */
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
    direction: rtl;
    font-family: "Cairo", serif;

}

.content-meta {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 2rem;
}

.project-info {
    margin-bottom: 1rem;
    color: #666;
}

.navigation-links {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: #92163A;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #92163A;
}
@media (max-width: 768px) {
    .content-image img {
        min-width: 100%;
        height: 200px;
    }
    .content-image {
        min-height: 200px;
    }
    .content-body iframe {
        height: 300px;
    }
}