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

.details-container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

header h1 {
    text-align: center;
    font-size: 2.5em;
    color: #bd6d86;
    margin-bottom: 20px;
}

.details-content {
    line-height: 1.6;
}

.details-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.details-list {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
}

.details-list li {
    margin-bottom: 10px;
}

.details-list li i {
    color: #bd6d86;
    margin-right: 10px;
}

.details-image {
    text-align: center;
    margin: 30px 0;
}

.details-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    margin-top: 20px;
}

.back-link {
    text-decoration: none;
    color: #fff;
    background: #bd6d86;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.back-link:hover {
    background: #a24d66;
}
