body {
    background-color: #212A31;
}

main {
    background-color: #212A31;
    padding: 4em 0;
    width: 100%;
}

main img {
    width: 100%;
    object-fit: cover;
    border-radius: 1em;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px,
                rgba(6, 24, 44, 0.65) 0px 4px 6px -1px,
                rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    max-width: 500px;
}

main .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 3em 5em;
    gap: 3em;
    flex-wrap: wrap;
}

main .image-container {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main .image-container:hover {
    transform: scale(1.05);
}

main .context h1 {
    font-size: 64px;
    margin-bottom: 0.5em;
    font-weight: bold;
    letter-spacing: 1px;
    color: #D3D9D4;
}

main .context h2 {
    font-size: 32px;
    font-weight: normal;
    line-height: 1.4;
    color: #D3D9D4;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

main .image-container,
main .context {
    opacity: 0;
    animation: fadeSlideUp 1s ease-out forwards;
}

main .context {
    animation-delay: 0.3s;
}

main .context p {
    font-size: 18px;
    margin-top: 1em;
    margin-bottom: 1.5em;
    max-width: 600px;
    line-height: 1.6;
    color: #D3D9D4;
}

main .highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2em;
}

main .highlights li {
    margin: 0.5em 0;
    font-size: 16px;
    color: #748D92;
    display: flex;
    align-items: center;
}

main .buttons {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.btn {
    background-color: #124E66;
    color: #D3D9D4;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #2E3944;
}

.btn-secondary {
    background-color: #748D92;
    color: #212A31;
}

.btn-secondary:hover {
    background-color: #5f757d;
}
