.tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.tab {
    display: flex;
    align-items: center;
    padding: 20px 40px;
	font-size: 2.275rem;
	letter-spacing: .094rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
	    min-height: 100px;
}
.tab:hover {
    opacity: 0.8;
	cursor: url(../img/arrow-right-white.svg), auto;
}
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: flex-end;
    z-index: 9999;
   overflow: hidden;
}
.popup {
    background: white;
    width: 80vw;
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    position: relative;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 4rem;
}
.popup .header {
    padding: 30px;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    position: relative;
}
.popup .header .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #8fac3c;
    cursor: pointer;
}
.popup .content {
    padding: 30px;
}
.highlight-box {
    display: flex;
    background: #e5243b;
    color: white;
    padding: 20px;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.highlight-box p {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.6;
}
.highlight-box img {
    max-width: 300px;
    border-radius: 4px;
}
.slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 30px 0;
}
.slide {
    min-width: 250px;
    padding: 20px;
    border-radius: 8px;
    background: #f1f1f1;
    text-align: center;
}
.slide.red {
    background: #e5243b;
    color: white;
}
.slide h2 {
    font-size: 2.5rem;
    margin: 0;
}
.slide small {
    font-size: 1rem;
}
.next {
    margin-top: 30px;
    padding: 10px;
    background: #222;
    color: white;
    width: fit-content;
    cursor: pointer;
}
.header h1{
    color: #26322A;
}
@media (max-width: 768px) {
    .popup {
        width: 100vw;
    }
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    .highlight-box img {
        max-width: 100%;
    }
}