@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
        background: linear-gradient(135deg, #382ca0,#63a7a7);
        font-family: Montserrat;
        line-height: 1.6;
        margin: 0;
        color: #fff;
        min-height: 100vh;
}
.container{
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}
.back-button{
    display:inline-flex;
    align-items: center;
    color: #64ffda;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: transform 0,3s ease;
}
.detail-header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.detail-image{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;

}
.detail-info h1 {
    color: #64ffda;
    margin-bottom: 1rem;
}

.detail-info h2 {
    color: #ccd6f6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.detail-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h3 {
    color: #64ffda;
    margin-bottom: 1rem;
}

.detail-section p {
    color: #ccd6f6;
    margin-bottom: 1rem;
}

.detail-section ul {
    color: #ccd6f6;
    margin-left: 1.5rem;
}

 .detail-section li {
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .detail-header {
                grid-template-columns: 1fr;
            }
        }
