* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

header{
    position: relative;
    text-align: center;
    font-size: 60px;
    font-family: Arial, serif;
    padding: 50px;
    color: gold;
    background-color: #b30000;
}

header {
    position: relative;
    z-index: 1;

    text-align: center;
    font-size: 60px;
    font-family: Arial, sans-serif;
    padding: 50px;
    color: whitesmoke;
    background-color: #2c3e50;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("../images/logo.png"); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: 150px;

    opacity: 0.3;
    z-index: -1;
}

.footer {
    background-color: #1f2f3a;
    color: white;
    padding: 40px 20px 10px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #dcdcdc;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #f4b400;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
}

.footer-bottom a{
    text-decoration: none;
    color: #dcdcdc;
}

.footer-bottom a:hover {
    color: #f4b400;
}

nav {
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: center;
    gap: 20px;
    background: #34495e;
    padding: 12px 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 10px;
    transition: 0.3s;
    border-radius: 5px;
}

nav a:hover {
    background: #e67e22;
    color: #fff;
}

nav .dropdown {
    position: relative;
    display: inline-block;
}

nav .dropbtn {
    color: #fff;
    text-decoration: none;
    padding: 8px 10px;
    display: inline-block;
    transition: 0.3s;
    border-radius: 5px;
}

nav .dropbtn:hover {
    background: #e67e22;
}


nav .dropdown-content {
    display: none;
    position: absolute;
    background-color: #34495e;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1;
}

nav .dropdown-content a {
    color: #fff;
    padding: 10px 10px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

nav .dropdown-content a:hover {
    background-color: #e67e22;
}

nav .dropdown:hover .dropdown-content {
    display: block;
}

main {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 10px;
}


article p {
    margin-bottom: 1.5%;
    font-size: 17px;
}

section.box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 2%;
}

section.box h2 {
    text-align: center;
    margin-bottom: 2%;
    color: #2c3e50;
}

section.box h3 {
    color: #e67e22;
    margin-top: 1.5px;
}

.img-box {
    width: 100%;
    height: 450px;
    background-color: #bdc3c7; 
    border-radius: 10px;
    margin: 1px 0;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.box p{
    margin-bottom: 10px;
}

section.box a {
    text-decoration: none;
    color: darkblue;
}

section.box a:hover {
    text-decoration: underline;
    color: deepskyblue;
}

.fact-box{
    background:whitesmoke;
    border-left:6px solid #b30000;
    padding:15px 20px;
    margin-top:20px;
    margin-bottom: 20px;
    border-radius:6px;
    max-width: 100%;
}

@media screen and (max-width: 756px) {
    nav {
        grid-template-columns: repeat(5, auto);
        gap: 5px;
    }

    nav a {
        margin: 0;
    }

    .img-box {
        height: 200px;
    }

    nav .dropdown {
        width: auto;
        text-align: center;
    }

    nav .dropdown-content {
        position: absolute;
        width: max-content;
    }
}