@font-face {
    font-family: 'Ubuntu';
    src: url('../fonts/Ubuntu/Ubuntu-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

body {
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    color: #F7F7FF;
    line-height: 1.6;
    background: linear-gradient(135deg, #800000, #FFD000);
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}

header > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: inherit;
}

nav button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

main section:first-of-type {
    padding: 60px 20px;
    text-align: center;
}

main section:first-of-type img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px 0;
}

main section:nth-of-type(2) {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

main section:nth-of-type(2) div {
    display: flex;
    justify-content: center;
}

footer > div:first-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

footer > div:last-of-type {
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

main section:nth-of-type(2) a {
    display: block;
    width: 220px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

main section:nth-of-type(2) a img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main section:nth-of-type(2) a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px #545E75;
}

main section:nth-of-type(2) > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

main section:nth-of-type(2) h2 {
    margin-bottom: 20px;
    text-align: center;
}

main section:nth-of-type(2) > div > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

#prev-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent; 
    border-right: 25px solid #FF785A; /* Arrow pointing right */

}

#next-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent; 
    border-left: 25px solid #FF785A; /* Arrow pointing left */
}

.fact-box {
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.logos img {
    width: 30px;
    height: 30px;
    opacity: 0.8;
}

.logos img:hover {
    opacity: 1;
}