  /* General Reset */
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

/* Header */
header {
    background-color: #4682B4;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.5 rem;
}

/* Main Section */
main {
    padding: 2rem;
    max-width: 1100px;
    margin: auto;
}

.data-section {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.data-section h2 {
    color: 	#4682B4;
    margin-top: 0;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
}

.data-section h2 img {
    margin-right: 20px;
    width: 60px;
    height: 60px;
}

.data-section h3 {
    color: 	#4682B4;
    margin-top: 0;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
}

.data-section h3 img {
    margin-right: 20px;
    width: 45px;
    height: 60px;
}

.data-section h4 {
    color: 	#4682B4;
    margin-top: 0;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
}

.data-section h4 img {
    margin-right: 20px;
    width: 75px;
    height: 60px;
}

.data-section h5 {
    color: 	#4682B4;
    margin-top: 0;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.data-section p {
    line-height: 1.6;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th, table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 1.2rem;
}

table th {
    background-color: 	#c1d6e7;
    color: black;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Footer */
footer {
    text-align: center;
    padding: 0.5rem 0;
    background-color: 	#4682B4;
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
}

footer a {
    color: 	#4682B4;
    text-decoration: none;
}


code {
    font-family: Consolas,"courier new";
    color:#CD7F32;
    background-color: #f1f1f1;
    padding: 1px;
    font-size: 95%;
  }

