/* Basic reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f6f6f65c;/* #f6f6f6; */
    color: #222;
}

p {
  line-height: 1.3;
}
/* Layout containers */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* HEADER */
.header {
    background: #F9F8F4;/* #ffffff; */
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-size: 24px;
    font-weight: bold;
}

.header-nav a {
    margin: 0 15px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.header-search input {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.objectives {
  line-height: 1.25;
}

a.links {
  color: black;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.2;
}
.links {
  list-style: none;
}
.links.side-bar {
  border-radius: 4px;
  padding-top: 4px;
  color: #c0350b;
  background-color: rgba(220, 220, 220, 0.699);
}

.review {
  list-style: none; 
  line-height: 1.4;
}

/* Mobile hamburger */
.header-menu-btn {
    font-size: 24px;
    display: none;
    cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #000;
    text-decoration: none;
}

/* HERO SECTION */
.hero {
    background: #ffffff;
    padding: 40px 30px;
    margin: 30px 0;
    border-radius: 10px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #d00000;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff9b00;
}

/* GRID LAYOUT */
.grid-2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 25px;
}

/* TILES */
.tile {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tile h2, .tile h3 {
    margin-bottom: 10px;
}

/* SIDEBAR */
.sidebar .tile {
    position: sticky;
    top: 100px;
}

/* ACCORDION */
.accordion-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.accordion-header {
    padding: 15px;
    background: #f0f0f0;
    color: #c0350b;
    cursor: pointer;
    font-weight: bold;
}

.accordion-body {
    display: none;
    padding: 15px;
}

.accordion-item.open .accordion-body {
    display: block;
}

/* FOOTER */
.footer {
    background: #222;
    color: #fff;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
}

.f-container{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 10px;
}

.footerlinks {
  color: white;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .header-nav, .header-search {
        display: none;
    }

    .header-menu-btn {
        display: block;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}
