body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 10px 0;
    font-family: Georgia, Garamond, "Libre Baskerville", serif;
}

body {
    background-color: #ffffff;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    color: #E69F00;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

h4, h5, h6 {
    color: #ffffff;
}

p {
    font-size: 20px;
    text-align: center;
}



header {
    padding: 20px;
    background-color: #725DEF;
    color: #fff;
}

header img {
    max-width: 35%;
    height: auto;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

.vidborder {
    width: 100%;
    height: 100%;
    text-align: center;
}

.mainheader {
    color: #E69F00;
    font-weight: bold;
    text-align: center;
    text-shadow:
        -1px -1px 0 black,
         1px -1px 0 black,
        -1px  1px 0 black,
         1px  1px 0 black;
    font-size: 40px;
}


.tagline {
    background-color: #000000;
    color: #E69F00;
    padding: 10px;
    font-size: 20px;
    font-style: italic;
    border-radius: 5px;
    margin: 10px auto 20px;
    width: fit-content;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.calltoaction {
    background-color: #000000;
    border-left: 5px solid #E69F00;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 5px;
}
.calltoaction p{ 
    color:#ffffff; 
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 10px;

}

nav a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 14px;
    display: inline-block;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #bf4417;
    color: #fff;
}

nav a.active {
    background-color: #E69F00;
    color: #ffffff;
}

nav {
    background-color: #725DEF;
    padding: 10px 20px;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.logo-item {
    flex: 0 0 200px;
}

.logo {
    width: 300px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
    gap: 15px;
    min-width: 0;
}

.nav-links li {
    margin: 0;
    white-space: nowrap;
}

.search {
    flex: 0 0 auto;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: #000000;
    border-radius: 20px;
    padding: 5px;
}

.search-form input {
    border: none;
    padding: 5px 10px;
    border-radius: 20px 0 0 20px;
    font-family: Georgia, Garamond, "Libre Baskerville", serif;
    font-size: 16px;
    outline: none;
    width: 140px;
}

.search-form button {
    background-color: #000000;
    border: none;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #bf4417;
}
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    text-align: left;
    line-height: 1.6;
}

main section {
    margin-bottom: 40px;
}
section li {
    font-size: 18px;
}
ul {
    list-style-type: disc;
    margin-left: 40px;
    text-align: left;
}

a {
    color: #bf4417;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

main section:last-of-type {
    background-color: #000000;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.button {
    background: #EB6123;
    color: white;
    padding: 5px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    margin: 20px auto;
    width: fit-content;
    text-align: center;
    transition: 0.2s ease, transform 0.2s ease;
}

.button:hover {
    background: #bf4417;
    transform: scale(1.05);
}


.featured-resources {
    margin: 40px auto;
    padding: 20px;
}

.featured-resources h3 {
    text-align: center;
    margin-bottom: 25px;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.resource-card {
    background: #ffffff;
    border-radius: 5px;
    width: 260px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 5px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 16px rgba(0,0,0,0.25);
}

.resource-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 12px;
}

.resource-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #E69F00;
}

.resource-card p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #000;
}

.resource-card .button {
    background: #EB6123;
    color: white;
    padding: 5px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 17px;
    display: inline-block;
    transition: 0.2s ease, transform 0.2s ease;
}

.resource-card .button:hover {
    background: #bf4417;
    transform: scale(1.05);
}

.resource-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-box {
    flex: 1;
    width: 250px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
}


footer {
    background-color: #000000;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

footer p {
    margin: 0;
}

.contact-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px #000000;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #E69F00;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-form button:hover {
    background-color: #bf4417;
}

@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .search-form {
        margin-top: 10px;
    }

    main {
        padding: 10px;
    }

    header img {
        width: 50%;
    }
}


