body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffe6f2;
}

header {
    background-color: #ff69b4;
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 0.5rem;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

nav ul {
    padding: 0;
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ffff00;
    text-shadow: 0 0 5px #fff;
}

main {
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.top-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff6fa;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #ff1493;
    border-bottom: 2px solid #ff1493;
    padding-bottom: 10px;
    font-size: 1.8em;
}

ul {
    padding-left: 20px;
}

.highlight {
    background-color: #ffff00;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
}

.model-showcase {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.model {
    text-align: center;
    margin: 10px;
}

.model img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.model img:hover {
    transform: scale(1.05);
}

.model p {
    margin-top: 10px;
    font-weight: bold;
    color: #ff69b4;
}

.apply-button {
    display: inline-block;
    background-color: #ff69b4;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.apply-button:hover {
    background-color: #ff1493;
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    .model img {
        width: 150px;
    }
}