/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #FFF;
}

/* Sticky Box */
.sticky-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    height: 211px;
    z-index: 1000;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 20px;
}

.logo-of-co {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    width: calc(200px / 3 * 2);
    height: calc(200px / 3 * 2);
    object-fit: contain;
}

.text-logo-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(200px * 1.5);
    height: calc(100px * 1.5);
    object-fit: contain;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-buttons a {
    color: #FFF;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-buttons a:hover {
    background-color: #444;
}

/* Contact Title */
.contact-title {
    font-family: 'Jacques Francois', serif;
    font-size: 40px;
    text-align: center;
    margin-top: 300px;
}

/* Grey Box */
.large-grey-box {
    background-color: #252930;
    border-radius: 20px;
    width: 100%;
    max-width: 850px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Fresca', sans-serif;
    font-size: 20px;
    color: white;
    line-height: 1.8;
    box-sizing: border-box;
}

.large-grey-box a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s;
}

.large-grey-box a:hover {
    color: #CCC;
}

/* LinkedIn Button */
.linkedin-button {
    display: inline-block;
    color: #FFF;
    text-decoration: none;
    background-color: #9cbfd2; 
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Fresca', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

.linkedin-button:hover {
    background-color: #005582;
    color: #FFF;
}
