body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
    background-color: #f9f9f9;
}
a {
  text-decoration: none;
}
h1
{
    color: #000;
}
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 20px; /* Add some space before footer */
}

footer {
  background-color: #00aaff;
  border-top: 3px solid #000;
  width: 100%;
  margin-top: auto; /* Pushes footer to bottom */
}

/* Header styling */
header {
  background-color: #00aaff; /* Match logo's blue */
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 3px solid #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo image */
header img {
  height: 100px;
  width: 150px;
  margin-right: 20px;
}

/* Text next to logo */
.header-text {
  color: #000;
}

.header-text h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.header-text p {
  font-size: 1rem;
  font-weight: 500;
}
/* About Section */
.about {
  background-color: #f9f9f9;
  padding: 60px 30px;
}
#main_body
{
     background-color: #f9f9f9;
     margin-bottom: 0;
     padding: 0;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.start_btn
{
   text-align: center;
}
#btn_start
{
    margin:5px;
    padding:15px;
    background-color:#00aaff;
    font-size: 2em;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 10px;
    cursor: pointer;
    
}
#btn_start:hover
{
     transition: color 0.3s ease;
     background-color:#7fd2fb;
    /* border-radius:20px;*/
     box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);

}
footer {
  background-color: #00aaff;
  border-top: 3px solid #000;
  width: 100%;
  margin-top: auto; 
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #C0C0C0;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}
.legal-links
{
    margin:20px;
}
.legal-links a {
    color: #C0C0C0;
    text-decoration: none;
    margin-bottom: 10px;
  
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff; 
}
.footer-bottom .site-creator {
  margin-top: 10px;
  font-style: italic;
}
#linkedin_icon {
  height: 20px;
  width: 20px;
  margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .header-text p {
    font-size: 2rem;
    font-weight: 500;
}
 header img {
  height: 150px;
  width: 200px;
  margin-right: 20px;
}
.about{
  height: 100%;

}
.about h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000;
}

.about p {
  font-size: 3rem;
  line-height: 2;
  margin-bottom: 15px;
}
#btn_start
{
  font-size:3rem;
}

footer {
  background-color: #00aaff;
  border-top: 3px solid #000;
  width: 100%;
  margin-top: auto; 
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #C0C0C0;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 2rem;
}
.legal-links
{
    margin:20px;
}
.legal-links a {
    color: #C0C0C0;
    text-decoration: none;
    margin-bottom: 10px;
  
    transition: color 0.3s ease;
}




}




