.project-container {
    width: 80%;
    margin: auto;
    color: #4f48d6;
}

.project-header {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-filter {
    margin-right: 10px;
}

.project-detail-label,
.project-header .title h1 {
    font-weight: 500;
    font-size: 32px;
    font-family: "Instrument Sans", sans-serif;
}

.project-header .title {
    text-align: right;
}

.project-header .col {
    width: 45%;
}

.project-thumbnail {
    width: 100%;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-infos {
    display: flex;
    min-width: 200px;
    flex-direction: column;
    padding: 20px 0 20px 35px;
    position: absolute;
    right: 50px;
    bottom: -200px;
    background-color: #4f48d6;
    color: #fff;
}

.project-infos a {
    width: 140px;
    display: flex;
    text-align: center;
    align-items: center;
    padding: 5px 0 5px 12px;
    border-radius: 5px;
    margin-left: -10px;
    color: #fff;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.project-infos a:hover {
    background: #fff;
    color: #4f48d6;
}

.project-infos p {
    font-weight: 600;
    font-size: 22px;
    margin: 5px 0 15px 0;
    padding-right: 35px;
}

.project-infos p.info-label {
    border-bottom: 1px solid #fff;
    font-weight: 400;
    font-size: 20px;
    margin: 0 !important;
    padding: 0 0 5px 0;
}

.project-content {
    width: 80%;
    margin: 30px auto;
}

.project-text {
    width: 80%;
}

.project-thumbnail img {
    width: 80%;
}

.about-section {
    margin-top: 40px;
    padding: 15px 25px;
    border: 2px solid #4f48d6;
    border-radius: 5px;
}

.about-section p {
    margin: 0;
    color: #4f48d6;
}

.see-more-container {
    text-align: center;
}

.product-btn-container {
    display: none;
}

@media (max-width: 1024px) {
    .project-infos {
        display: flex;
        flex-direction: column;
        padding: 20px 0 20px 35px;
        position: absolute;
        right: -30px;
        bottom: -200px;
        background-color: #4f48d6;
        color: #fff;
    }

    .project-infos p {
        font-weight: 600;
        font-size: 20px;
        margin: 5px 0 15px 0;
        padding-right: 35px;
    }

    .project-infos p.info-label {
        border-bottom: 1px solid #fff;
        font-weight: 400;
        font-size: 18px;
        margin: 0 !important;
        padding: 0 0 5px 0;
    }
}

@media (max-width: 768px) {
    .project-header {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 30px 0;
    }

    .project-header .title {
        text-align: center;
    }

    .project-header .title h1 {
        font-size: 24px;
    }

    .project-detail-label {
        font-size: 20px;
    }

    .project-header .col {
        width: 100%;
    }

    .project-thumbnail {
        margin-top: 20px;
    }

    .project-thumbnail img {
        width: 100%;
    }

    .project-content {
        width: 100%;
        margin: 30px 0;
    }

    .project-text {
        width: 100%;
    }

    .project-infos {
        display: none;
    }

    .product-btn-container {
        display: flex;
        justify-content: center;
    }

    .product-button {
        color: #4f48d6;
        border-color: #4f48d6;
        border-radius: 5px;
        border: solid 2px;
        font-weight: 700;
    }

    .product-button:focus,
    .product-button:hover {
        color: #fff;
        background-color: #4f48d6;
    }

    .category-filter {
        font-size: 1.1rem !important;
        margin: 0;
    }

    .category-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 15px;
    }

    .about-section {
        margin-top: 30px;
    }
}
