/*
h1{
    font-size: 5.0em;
    
    color: #000000;
    margin-bottom: 0.2em;
    margin-top: 0.1em;
    text-align : center;
}



h2{
    font-size: 1.5em;
    color: #666666;
    margin-bottom: 0.2em;
    margin-top: 6em;
    text-align : center;
}

h3{
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 0.2em;
    margin-top: 2em;
    text-align : left;
}

h4{
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 0.2em;
    margin-top: 2em;
    text-align : left;
}

span{
    color: #6200ea;
}


div{

    display: flex;
    justify-content: center;
    align-items: center;
    size: auto;
    background-color: #ffffff00;
    

    
}

button{
    background-color: #6200ea;
    color: #ffffff;
    border: none;
    padding: 0.75em 1.5em;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
    
}

body{
    background-color: #ffffff;
    /* background-image: 
        linear-gradient(225deg, rgb(0, 0, 0), transparent 70.71%), 
        linear-gradient(90deg, rgb(234, 255, 0), transparent 30.71%), 
        linear-gradient(170deg, rgb(213, 49, 191), transparent 70.71%),
        linear-gradient(150deg, rgb(0, 255, 76) , transparent 70.71%); 
    background-repeat: no-repeat;
    background-size: 100% 200%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    margin: 0;
    padding: 2em;

}

.box{
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 1.5em;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
} */


/* Base Styles */
body {
    background-color: #f5f5f5; /* Light gray background to frame the white container */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    margin: 0;
    padding: 2em;
}

/* Layout Wrapper - This creates the two columns */
.layout-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto; /* Centers the container on the screen */
    background-color: #ffffff;
    min-height: 80vh;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05); /* Optional: Adds a slight shadow to make it pop */
}

/* Left Sidebar Styles */
.sidebar {
    width: 25%;
    padding: 3em 2em;
    border-right: 1px solid #e0e0e0;
}

.logo-section h1 {
    font-size: 1.8em;
    margin: 0;
    color: #000000;
}

.tagline {
    font-size: 0.85em;
    color: #666666;
    margin-top: 0.5em;
    margin-bottom: 4em;
}

/* Navigation Menu Styles */
.side-nav ul {
    list-style-type: none;
    padding: 0;
}

.side-nav li {
    padding: 1em 0;
    border-bottom: 1px solid #f0f0f0;
}

.side-nav a {
    text-decoration: none;
    color: #333333;
    font-weight: bold;
    font-size: 0.95em;
}

/* Right Main Content Styles */
.main-content {
    width: 75%;
    padding: 4em;
}

.main-content h2 {
    font-size: 2.5em;
    margin-top: 0;
    color: #333333;
}

.main-content h3 {
    font-size: 1.5em;
    color: #333333;
    margin-top: 2em;
}

.main-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #444444;
}

.main-content h4 {
    font-size: 1.2em;
    margin-top: 3em;
}

/* Button Styles */
button {
    background-color: #6200ea;
    color: #ffffff;
    border: none;
    padding: 0.75em 1.5em;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: 1em;
}

button:hover {
    background-color: #4a00b0;
}




