body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    margin-top: 50px;
}

.card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
}

.project-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.project-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.project-features {
    list-style-type: none;
    padding: 0;
}

.project-features li {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-custom {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.card-header {
    background-color: black;
    border-bottom: none;
}

.card-footer {
    background-color: transparent;
    border-top: none;
}