/*Paragraph Spacing*/
body p {
margin: 0;
padding: 0;
}

/*Intro Blog Remove Top Border*/
.boxed .blog-item {
box-shadow: 0 0 2px rgba(51, 57, 66, 0.1), 0 2px 5px rgba(51, 57, 66, 0.08), 0 5px 15px rgba(51, 57, 66, 0.08);
  margin-bottom: 20px;
  margin-top: 20px;
}

/*Boxed Div*/
.boxedborder{
    background-color: #fff;
    color: #666;
  box-shadow: 0 5px 10px #999999;
padding:10px;}

/*Button to Div Bottom*/
.bottomdiv {
display: flex; 
  flex-direction: column;}
.buttondiv {
  margin-top: auto;
}

/*Accordian*/
.custom-accordion details {
  border: 2px solid #002E6D;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.custom-accordion summary {
  background-color: #002E6D;
  color: white;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  position: relative;
  list-style: none;
}

.custom-accordion summary::-webkit-details-marker {
  display: none;
}

.custom-accordion summary::after {
  content: "+";
  font-size: 1.5em;
  color: white;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.custom-accordion details[open] summary::after {
  content: "−";
}

.custom-accordion p {
  padding: 15px 20px;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}
