body {
    margin: 0;
    font-family: Montserrat, sans-serif;
    background-color: #141414;
    color: white;
}

.container {
    max-width: 800px;
    margin: auto;
    margin-top: 100px;
    padding: 20px;
    background-color: #003463;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 75px;
    color: white;
}

h2 {
    margin-top: 20px;
    font-size: 1.5em;
    font-weight: 700;
    color: white;
}

h3 {
    margin-top: 15px;
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #d1d1d1;
}

p {
    line-height: 1.8;
    margin-bottom: 20px;
}



.footer {
    background-color: #003463;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

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

.back-button-container {
    display: flex;
    justify-content: left;
    margin-top: 40px;
}

.back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #003463;
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    top: 140px;
    left: 185px;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 25px solid white;
    transform: rotate(-90deg);
    translate: -2px;
}

.back-button:hover .circle {
    background-color: #002244;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.back-button:hover .triangle {
    border-bottom-color: #d1d1d1;
}

.dock {
    position: fixed;
    top: 10px;
    left: 50%;
    translate: -50% 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 300px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
}

.dock-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(159, 159, 159, 0.3);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.dock-button img {
    width: 32px;
    height: 32px;
    cursor: pointer;
    object-fit: contain;
}

.dock-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1320px) {
    .dock {
        width: 260px;
        height: 50px;
    }

    .dock-button {
        width: 40px;
        height: 40px;
    }

    .dock-button img {
        width: 20px;
        height: 20px;
    }

    .container {
        margin: 80px 20px;
    }

    .back-button-container {
        display: flex;
        justify-content: center;
        margin-bottom: 100px;
    }

    .back-button {
        position: relative;
        top: 65px;
        margin-bottom: 100px;
        left: auto;
        margin: 0 auto;
    }
}