* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    background-color: #3b3b3b;
}

@media only screen and (max-height: 700px) {html, body {overflow: auto;}}
@media only screen and (max-width: 700px) {html, body {overflow: auto;}}

body {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 100%);
    color: white;
    font-family: Arial, sans-serif;
}

.slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

header {
    background-color: #000000;
    color: white;
    width: 100%;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    padding: 0 20px;
}

.header-main h1 {
    color: inherit;
    text-decoration: none;
}

.header-main a {
    text-decoration: none;
    color: inherit;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 70px;
    width: auto;
}

.language-section {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.lang-btn img {
    width: 30px;
    height: 30px;
}

.lang-btn:hover {
    opacity: 0.7;
}

.header-menu {
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 0;
}

.header-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.header-menu a {
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.header-menu a:hover {
    color: #a0a0a0;
}

.header-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    display: inline-block;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000;
    min-width: auto;
    white-space: nowrap;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    text-align: left;
}

.header-menu a::after,
.dropdown > a::after,
.dropdown-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.header-menu a:hover::after,
.dropdown > a:hover::after,
.dropdown-content a:hover::after {
    width: 100%;
}

#executive-email-link,
#info-email-link,
#career-email-link,
#email-link {
    color: inherit;
    text-decoration: none;
}

main {
    flex-grow: 1;
}

.main-content {
    padding: 5%;
    height: 100%;
    display: flex;
    align-items: center;
}

.text-section {
    max-width: 600px;
    animation: fadeIn 1s ease-in;
}

.text-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.text-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media only screen and (max-width: 600px) {
    .text-section h2 {font-size: 2rem; margin-bottom: 1.5rem;}
    /* .text-section p {font-size: 1rem; margin-bottom: 1rem;}*/
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    background-color: #1f1f1f;
    padding: 1rem;
    text-align: center;
    color: #fff;
  }
  
  footer p {
    margin: 0;
    line-height: 1.5;
  }
  
  footer a {
    color: #bbb;
    text-decoration: none;
  }
  
  footer a:hover {
    color: #fff;
  }