body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;

}

h1 {
    word-break: break-all;
}

nav {
    padding: 1rem;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
}

nav a {
    color: black;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ec6745;
}

p,
li {
    font-size: 1.1rem;
    line-height: 1.6;
}

.press-main {
    width: 100%;
    max-width: 1280px;
    display: flex;
    margin: auto;
}

.left-side {
    width: 25%;
    padding: 20px;
}

.right-side {
    width: 75%;
    padding: 20px;
}

.press-main h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.press-main h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

.press-main p {
    margin-bottom: 20px;
}

.media-screens {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.media-screens a {
    width: calc(50% - 10px);
}

.media-screens img {
    width: 100%;
    height: auto;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 450px) {

    .press-main {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        width: 100%;
    }

    .media-screens a {
        width: 100%;
    }
    
}