@font-face {
    font-family: 'BrownStd';
    font-weight: normal;
    font-style: normal;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'BrownSTD', sans-serif;
    color: #444444;
}

.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.left-panel, .right-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 100vh;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.left-panel {
    width: 35%;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.logo {
    margin-bottom: 60px;
}

.logo img {
    width: 240px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #444444;
    font-weight: normal;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.accent {
    color: #f7941d;
    font-weight: bold;
}

.right-panel {
    width: 65%;
    background-color: #000000;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.product-icon {
    display: flex;
    align-items: center;
    position: relative;
}

.product-icon img {
    width: 30px;
    margin-right: 15px;
    position: relative;
    top: -15px;
    left: 10px;
}

.product-icon h3 {
    font-size: 18px;
    font-weight: normal;
    color: #c2c2c2;
}

.section-line {
    flex-grow: 1;
    height: 1px;
    background-color: #ED8B00;
    margin-left: 20px;
    border-top: 2px solid #ED8B00
}

.partner-logos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 25px;
}

.partner-logos img {
    width: auto;
    height: 40px;
    display: block;
}

.partner-logo {
    margin: 10px 20px;
    display: flex;
    align-items: center;
}

img[alt="Sisgeo"] {
    height: 60px;
}

.footer-logo {
    margin-top: auto;
    align-self: flex-end;
}

.scroll-button {
    display: none;
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f7941d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 100px;
}

.footer-link {
    color: #444444;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f7941d;
}

@media (max-width: 1200px) {
    .partner-logo {
        margin-left: 20px;
    }
    
    img[alt="Sisgeo"] {
        height: 60px;
    }
}

@media (max-width: 1024px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    
    .container {
        flex-direction: column;
        height: auto;
    }
    
    .left-panel, 
    .right-panel {
        width: 100%;
    }
    
    .left-panel {
        height: 100vh;
        position: relative;
    }
    
    .logo img {
        width: 200px;
    }
    
    .scroll-button {
        display: block;
        position: relative;
        width: 250px;
        height: auto;
        margin: 0px auto 0;
        left: auto;
        transform: none;
    }
    
    .right-panel {
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    
    .product-section {
        flex-direction: column;
        margin: 10px 0;
        padding: 0px 20px 0px 20px;
    }
    
    .product-icon {
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }
    
    .product-icon img {
        display: none;
    }
    
    .product-icon h3 {
        text-align: center;
        margin: 0;
        font-size: 16px;
    }
    
    .section-line {
        width: 100%;
        margin: 4px 0 0 0;
        border-top: 2px solid #ED8B00
    }
    
    .partner-logos {
        margin-top: 5px;
        margin-bottom: 15px;
    }
    
    .partner-logo {
        margin: 20px;
    }

    .partner-logos {
        justify-content: center;
    }

    .partner-logos img {
        height: 35px;
    }

    img[alt="Sisgeo"] {
        height: 50px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: space-evenly;
        margin-top: 20px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .left-panel {
        padding-top: 40px;
        padding-bottom: 10px;
        padding-right: 30px;
        padding-left: 30px;
        justify-content: space-evenly;
    }
    
    .right-panel {
        padding: 20px 15px;
    }

    .partner-logos img {
        height: 30px;
    }

    img[alt="Sisgeo"] {
        height: 50px;
    }

    .footer-links {
        margin-top: 20px;
        justify-content: space-evenly;
    }

    .footer-link {
        margin: 0 8px;
        font-size: 13px;
    }
}
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
}

.language-switcher a {
    text-decoration: none;
    color: #fff;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: background 0.3s ease;
    background: #ED8B00;
}

.language-switcher a:hover {
    background: #f0f0f0;
    color: #ED8B00;
}
