    /* General Section Styling */
    .project-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px 20px;
        font-family: Arial, sans-serif;
    }

    .project-details {
        flex: 1;
        padding-right: 20px;
    }

    .project-details h2 {
        font-size: 28px;
        font-weight: bold;
        color: var(--black);
        margin-bottom: 20px;
    }

    .project-details p {
        font-size: 18px;
        color: var(--gray-675);
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .project-details p span {
        font-weight: bold;
        color: var(--black);
    }

    .project-details i {
        margin-right: 10px;
        color: var(--secondary);
    }

    html[dir="rtl"] .project-details i {
        margin-left: 10px;
        color: var(--secondary);
    }

    /* Ensure all images have the same size */
    .project-image {
        flex: 1;
        width: 100%; /* Image will take full width of the container */
        max-width: 500px; /* Optional: limit max width */
    }

    .project-image img {
        width: 100%;
        height: 300px; /* Set the same height for all images */
        object-fit: cover; /* Ensure the image maintains its aspect ratio but fills the space */
        object-position: center; /* Center the image */
    }

    /* Horizontal Divider */
    .divider {
        width: 100%;
        border: 1px solid #eaeaea;
        margin: 30px 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
    .project-section {
        flex-direction: column;
    }

    .project-details {
        padding-right: 0;
        margin-bottom: 20px;
    }
    }