@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400,300,600);
@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700;900);
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #1c1c1c;
}
p {
    margin-bottom: 1rem;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative; /* Position for the accent stripes */
}
header, main, footer {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    
}
main{
    background: linear-gradient(to bottom, #f1f1f1, #dfdfdf); /* Gradient from white to light grey */
}
header, footer {
    color: white;
    background-color: #002336;
}
.header-content {
    flex-grow: 1;
    margin-left: 0px;
    margin-right: 0px;
    width:100%;
    position: relative;
    right:-10px;
}
.accent-stripes-left, .accent-stripes-right {
    display: flex; /* Flex container for the accent stripes */
    position: absolute;
    top: 0;
    height: 100%;
    width: 20px;
}
.accent-stripes-left {
    left: 0;
}
.accent-stripes-right {
    right: 0;
}
.accent-stripe {
    width: 10px;
    height: 100%;
}
.accent-stripe {
    width: 10px;
    height: 100%;
}
.accent-stripe1 {
    background-color: #00a3e0; /* First accent color */
}
.accent-stripe2 {
    background-color: #bdc600; /* Second accent color */
}

.container {
    display: flex;
    justify-content: space-between; /* Space between the divs */
}
.box {
    flex:auto;
    margin: 5px; /* Margin between the boxes */
    padding: 5px;
    text-align: Left;
}
.divcontainer {
    display: flex;
    justify-content: space-between; /* Space between the divs */
}
.divbox {
    flex:auto;
    margin: 5px; /* Margin between the boxes */
    padding: 15px;
    text-align: Left;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.divbox1{
    flex: 0 0 60%; /* 60% width */
}
.divbox2{
    flex: 0 0 33%; /* 40% width */
}
.wrapped-image {
    float: left; /* Makes the text wrap around the image */
    margin-right: 15px; /* Adds space between the image and the text */
    height: auto; /* Keeps the aspect ratio */
}
/* Responsive layout */
@media (max-width: 600px) {
    .divcontainer {
        flex-direction: column;
    }
    .wrapped-image {
        
        display: block;
        
    }
    .divbox1, .divbox2 {
        flex: 0 0 100%; /* Full width */
    }

}

.shadow {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}




.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    text-align: center;
}

.footer-section {
    flex: 1;
    padding: 10px;
    position: relative;
    
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #bdc600; /* Accent color */
}

.footer-section:last-child::after {
    display: none;
}
/* Media Query for Small Screens */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
    }

    .footer-section {
        border-bottom: 1px solid #bdc600;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-section::after {
        display: none;
    }
}

/* Default link style */
a {
    color: #007BFF; /* Blue color for links */
    text-decoration: none; /* No underline */
    font-weight: normal;
    
    transition: color 0.3s, text-decoration 0.3s, font-weight 0.3s;
}

/* Hover state */
a:hover, a:focus {
    color: #0056b3; /* Darker blue */
    text-decoration: underline;   
    text-decoration-thickness: 2px;   /* Make the line thicker */
    text-underline-offset: 4px;       /* Push the underline lower */    
}



/* Active state */
a:active {
    color: #004085; /* Even darker blue when active */
}

/* Example of a link with a different style in a specific section */
.special-section a {
    color: #28a745; /* Green color for links */
}

.special-section a:hover, .special-section a:focus {
    color: #218838; /* Darker green */
    text-decoration: underline;
    font-weight: bold;
}

/* Default image style */
img {
    transition: opacity 0.3s; /* Smooth transition */
}

/* Hover state */
img:hover {
    opacity: 0.5; /* Reduce opacity to 50% */
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 10px;
    font-size: 16px;
    color: #fff;
    background-color: #00a3e0;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
  }

  .button:hover {
    background-color: #bdc600;
    color: #002336;
    text-decoration:none
  }



    
      /* Light background div */
      .light-bg {
        background-color: #f5f5f5;
        color: #222;
        padding: 20px;
        margin-bottom: 30px;
      }
    
      .light-bg a {
        color: #1a73e8;  /* Darker link for light background */
      }
    
      /* Dark background div */
      .dark-bg {
        background-color: #182f5a;
        color: #eee;
        padding: 20px;
        margin-bottom: 30px;
      }
    
      .dark-bg a {
        color: #ffffff;  /* White link for dark background */
      }
