* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #e0e0e0;
    /* light gray background behind the page */
    color: #333;
    line-height: 1.5;
    padding: 40px 0;
}

.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.container {
    padding: 40px 0;
}

/* Top Bar */
.top-bar {
    background-color: #f15a22;
    padding: 8px 40px;
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
    font-weight: 600;
}

.top-bar .lang-links {
    color: white;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .separator {
    margin: 0 10px;
    opacity: 0.7;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-image {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Intro */
.intro {
    max-width: 75%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 0 80px;
    margin-bottom: 40px;
}

.intro em {
    font-style: italic;
    font-weight: 600;
}

/* Images */
.image-section {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 40px;
    text-align: center;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.bordered-image {
    padding: 0 40px;
}

.bordered-image img {
    border: 8px solid #f0f0f0;
    box-shadow: 0 0 0 1px #d0d0d0;
}

/* Features Three */
.features-three {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 50px;
    gap: 20px;
}

.feature-box {
    background-color: #4a4a4a;
    color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-content {
    padding: 20px;
    min-height: 130px;
}

.feature-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
}

.box-bar {
    height: 8px;
    background-color: #f15a22;
    width: 100%;
}

/* Middle Banner */
.middle-banner {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.banner-dark-shape {
    position: relative;
    color: white;
    padding: 30px 60px 30px 40px;
    width: 45%;
    z-index: 1;
}

.banner-dark-shape::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100px;
    /* Bleed to the left to hide left slant */
    right: 0;
    background-color: #4a4a4a;
    transform: skewX(-20deg);
    border-radius: 40px;
    /* Round the corners */
    z-index: -1;
}

.banner-dark-shape ul {
    list-style: none;
    font-size: 13px;
    font-weight: 500;
}

.banner-dark-shape li {
    margin-bottom: 15px;
}

.banner-dark-shape li:last-child {
    margin-bottom: 0;
}

.banner-text {
    width: 60%;
    padding: 0 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #333333;
    line-height: 1.2;
}

/* Bottom Details */
.bottom-details {
    display: flex;
    padding: 0 40px;
    margin-bottom: 0;
    gap: 40px;
}

.details-left {
    width: 40%;
}

.orange-box {
    background-color: #f15a22;
    color: black;
    padding: 30px 25px;
    height: 100%;
}

.orange-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.2;
}

.orange-box p {
    font-size: 14px;
    line-height: 1.5;
}

.details-right {
    width: 60%;
}

.details-right h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.details-right h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.details-right ul {
    list-style: none;
    font-size: 13px;
    font-style: italic;
    color: #000;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    padding: 5px 20px;
}

.footer-container strong {
    font-weight: 600;
}

.footer-orange-bar {
    height: 25px;
    background-color: #f15a22;
    width: 100%;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .features-three {
        flex-direction: column;
    }
    
    .middle-banner {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .banner-dark-shape {
        width: 100%;
        padding: 30px 40px;
    }
    
    .banner-dark-shape::before {
        transform: none;
        border-radius: 0;
        left: -100px;
        right: -100px;
    }
    
    .banner-text {
        width: 100%;
        padding: 30px 40px;
        text-align: center;
        margin-top: 10px;
    }
    
    .bottom-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .details-left, .details-right {
        width: 100%;
    }
    
    .logo-image {
        max-width: 90%;
    }
    
    .intro {
        max-width: 100%;
        padding: 0 20px;
        font-size: 16px;
    }
}