.project-detail-wrapper {
	width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 0 40px 0;
    font-family: 'BPG Nino Mtavruli', Arial, sans-serif;
}
.project-detail-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: left;
    color: #232e7a;
}
.project-detail-content {
    display: flex;
    gap: 60px;
    justify-content: center;
}
.project-detail-image img {
    width: 800px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.project-detail-info-card {
    background: #f7f7fa;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 0;
    min-width: 370px;
    margin-left: 0;
    overflow: hidden;
}
.info-card-title {
    background: #232e7a;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    padding: 28px 32px;
    text-align: center;
    letter-spacing: 1px;
}
.info-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    border-bottom: 1px solid #e3e3e3;
    font-size: 1.2rem;
}
.info-card-row:last-child {
    border-bottom: none;
}
.info-label {
    color: #7a7a7a;
    font-size: 1.05rem;
}
.info-value {
    font-weight: bold;
    color: #232e7a;
    font-size: 1.15rem;
}
@media (max-width: 900px) {
    .project-detail-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .project-detail-image img {
        width: 100%;
        max-width: 100%;
    }
    .project-detail-info-card {
        min-width: unset;
        max-width: 100%;
    }
}
