* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
    overflow-y: auto;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/granite.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: none;
    z-index: -2;
}

.navbar {
    margin-top: 20px;
    padding: 15px;
    position: sticky;
    z-index: 100;
}

.nav-link {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    background-color: goldenrod;
    box-shadow: 0px 10px 20px black;
    color: black;
    text-decoration: none;
    margin: 0 5px;
    padding: 8px 10px;
    border-radius: 4px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(243, 149, 8, 0.2);
    color: white;
    transform: scale(1.1);
}

.content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    margin-top: 100px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 4px solid rgb(173, 125, 4);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

h1 {
    font-family: 'DS Sans', sans-serif;
    font-weight: bolder;
    color:rgb(173, 125, 4);
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    font-family: 'DC Sans', sans-serif;
    font-weight: bolder;
    text-align: center;
    color: rgb(173, 125, 4);
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 2px solid #a0522d;
    padding-bottom: 5px;
}

h3 {
    font-family: 'DS Sans', sans-serif;
    font-weight: bolder;
    color: rgb(173, 125, 4);
    font-size: 1.4em;
    margin-bottom: 10px;
    margin-top: 20px;
}

p {
    font-family: DC Sans, sans-serif;
    font-weight: bolder;
    line-height: 1.6;
    margin-bottom: 15px;
    color: black;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    font-family: DC Sans, sans-serif;
    font-weight: bolder;
    line-height: 1.6;
    margin-bottom: 5px;
    color: black;
}

section {
    margin-bottom: 25px;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        margin: 5px;
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .content {
        margin: 10px;
        padding: 15px;
        margin-top: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 90%;
        margin: 3px 0;
        text-align: center;
    }
    
    .content {
        margin: 5px;
        padding: 10px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    p, li {
        font-size: 16px;
        line-height: 1.5;
    }
}