/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html, body {
    height: 100%;
    line-height: 1.5;
    background-color: #f4f4f9;
    color: #333;
}

body {
  max-width: 90%;
  height: 28%;  
  margin: 0 auto; 
  padding: 20px;
  background-color: #ffffff; 
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Header */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    color: #333;
}

/* Text Elements (p, ul, ol) */
p, ul, ol {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

p b {
    font-weight: 700;
}

/* Executive Summary Section */
.executive-summary {
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 5px solid #1a73e8;
    min-height: 200px;
    max-width: 1000px;
    width: 100%;
    margin: 10px auto;
}

.executive-summary p {
    font-size: 1.1rem;
}


/* Footer */
footer {
    font-size: 0.9rem;
    text-align: center;
    color: #777;
    margin-top:30px;
    padding: 20px 0;
    background-color: #f4f4f9;
}

/* Navigation */
ul {
  padding-left: 40px;        /* Space for bullets */
  list-style: disc;          /* Bullets live here */
}

ol {
  padding-left: 40px;        /* Space for numbers */
  list-style: decimal;       /* Numbers live here */
}

ul li, ol li {
  margin-bottom: 10px;       /* Spacing between items */
}

a {
    text-decoration: none;
    color: #1a73e8;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

#bigcontainer
	{
	text-align: center;
        height:auto;
	width:auto;
	float:center;
	}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p, ul, ol {
        font-size: 0.95rem;
    }

    ul li {
        display: block;
        margin-bottom: 8px;
    }

    footer {
        font-size: 0.8rem;
    }
}
