.wwd-detail-page {
    max-width: 1200px;
    margin: 180px auto;
    padding: 20px;
    font-family: sans-serif;
}

.wwd-header {
    text-align: center;
    margin-bottom: 40px;
}

.wwd-header h1 {
    font-size: 36px;
    color: var(--primary);
}

.wwd-header p {
    font-size: 18px;
    color: var(--text);
    margin-top: 10px;
}

.wwd-banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.wwd-banner img {
    width: 100%;
    height: 600px;
    display: block;
    border-radius: 10px;
}

.wwd-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wwd-content {
    flex: 3;
}

.wwd-content h2 {
    color: var(--accent);
    margin-bottom: 10px;
}

.wwd-content p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wwd-facts {
    background-color: var(--background);
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.wwd-facts h3 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 20px;
}

.wwd-facts ul {
    list-style: square inside;
}

.wwd-facts li {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text);
}

.wwd-cta {
    text-align: center;
    margin-top: 40px;
}

.wwd-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 20px auto;
}

.wwd-images img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .wwd-main {
        flex-direction: row;
    }

    .wwd-facts {
        margin-top: 0;
        margin-left: 40px;
    }
}