
	/* Universal box-sizing rule */
*, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            }

/* Basic styling for the body */
body {
				font-family: 'Arial', sans-serif;
				line-height:1.4;
				color: #333;
				background-color: #e0dcdc;
				display: flex; /* Make body a flex container */
				flex-direction: column; /* Stack header, nav, main, footer vertically */
				min-height: 100vh; /* Ensure body takes full viewport height */
				font-size:px;
        }

       /* Header with Monogram */
header {
				background: linear-gradient(-90deg,#009900, #fff);
				display: flex;
				align-items: center;
				justify-content: space-between;
				padding: 0px 20px;
				border-bottom: 4px solid #fff;
			}
 /* Logo Image */
  header img.logo {
				width:120px;
				height:100px;
				border-radius 10px;
				box-shadow: 0 4px 8px rgba(0,0,0,0.2);
				object-fit: cover;
				}
 
/* Navigation styles */
nav {
				display: flex;
				justify-content: center;
				flex-wrap: wrap; /* Use flex-wrap on a single line */
				background-color:  #2c3e50;
				padding: 1px;
				border-right: 1px solid #ccc;
				transition: background-color 0.3s ease-in-out;
		}

/* Flexible link button styles */
.flex-link-btn {
				display: flex;
				align-items: center;
				justify-content: center;
				color: #fff;
				padding: 5px 10px;
				border-radius: 10px;
				background-color: #3498db;
				text-decoration: none;
				margin-left: 5px;
				margin-top: 2px;
				margin-bottom: 4px;
}

.flex-link-btn: {
    background-color: #CCD4BC;
}

.flex-link-btn:active {
    background-color: #2e7d34;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
/* Main content styles */
main {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    padding: 10px;
	
}




 .single-card {
flex: 1;
    margin: 50px;
    background: #ffffff;
    border-radius: 14px;
    padding: 50px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border-top: 8px solid #6a1b9a;
    border-left: 2px solid #6a1b9a;
 
   }

  .single-card h2 {
    color: #6a1b9a;
    margin-top: 0;
  }

  .single-card h3 {
    color: #4a148c;
    margin-bottom: 6px;
    margin-top: 20px;
  }

  .single-card p {
	  font-size: 15px;
    line-height: 1.7;

  }
  
  
  
  
  
  .single-card li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
  }

  .single-card ul {
    padding-left: 20px;
    margin-top: 6px;
  }