/* Reset some default styles */
body, h2, div {
    margin: 0;
    padding: 0;
}
html, body {
    height: 100vh;
}

/* Basic styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8; /* Light grey background for the entire page */
}

header {
    background-color: #0047ab; /* A strong, contrasting blue */
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.nav-item a {
    padding: 5px 20px;
    cursor: pointer;
    color: #ffffff; /* Ensure nav-items are white to stand out against the blue */
    text-decoration: none;
}
a {
    color: #000000;
    text-decoration: none;
}
.nav-item:hover {
    color: grey;
    text-decoration: underline;
}
a:hover {
    color: grey;
    text-decoration: underline;
}

.landing-page {
    justify-content: center;
    align-items: center;
    text-align: center;
}
h5 {
    display: inline-block;
    text-align: center;
    font-size: 30px;
    padding: 10px;
    border-style: solid;
    border-width: 5px;
    border-radius: 20px;
    border-color: grey;
    box-shadow: 5px 5px 15px #888888;
}

.calculator-categories {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.category {
    width: 200px;
    margin: 10px;
    padding: 10px;
    background-color: #ffffff; /* White background for category cards */
    border: 1px solid #dcdcdc; /* Light border for the cards */
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1); /* Soft shadow for depth */
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #0047ab;
    color: white;
    text-align: center;
}

h2 {
    color: #0047ab; /* Match h2 headings to the header color */
}

/* Layout for ads */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.ad-left, .ad-right {
    width: 160px; /* Adjust width as needed */
    min-height: 600px; /* Adjust height as needed */
    background-color: #f8f8f8;
    text-align: center;
}

.main-content {
    flex: 1;
    padding: 0 20px;
}
