.product-section {
    max-width: 90%;
    margin: 40px auto;
    border: 1px transparent;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

h2 {
    font-size: 2.5rem;
    color: #001f3f;
    margin-bottom: 20px;
}
p{
    font-size: 1rem;
    
}
.product-section .theory {
    max-width: 60%;
}

.product-section .buttons{
    display: flex;
    flex-direction: column;
    max-width: 30%;

}

.product-section a{
    height: fit-content;
    max-width: fit-content;
    border: 1px transparent;
    border-radius: 8px;
    background-color: orange;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px 10px 20px;
    color: white;
    font-weight: bold;
    margin: 5px auto;
    text-align: center;
    transition: background-color 0.3s ease;
}
.product-section a:hover{
    background-color: rgb(226, 147, 1);
}
.product-section #details{
    background: none;
    padding: 0;
    margin: 0;
    color: blue;
    font-weight: 400;
}
