/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004d99;
    padding: 10px;
    color: white;
    text-align: center;
}

header img {
    height: 100px;
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center;
    background-color: #005bb5;
    padding: 10px 0;
}

nav button {
    background-color: #ffffff;
    border: 1px 1.5px;
    padding: 10px 25px;
    margin: 0 10px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

nav button:hover {
    background-color: #69b3c9;
}

/* Main Content */
.main-content {
    padding: 5%;
}

.flyer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.flyer img {
    width: 1500px;
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.content-wrapper {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #004d99;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

h4 {
    font-size: 1em;
    font-weight: lighter;
}

/* CapLab Section */
.container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.container .image {
    flex: 1;
    padding: 5px;
    max-width: 250px;
}

.container .image img {
    width: 100%;
    height: 300px;
    border-radius: 5px;
}

.container .info {
    flex: 2;
    padding-left: 10%;
    padding-top: 0%;
}
.image {
    flex: 1;
    padding: 15px;
    text-align: center;
}

.image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image img:hover {
    transform: scale(1.05);
}

.info {
    flex: 2;
    padding: 20px;
}

.info h1 {
    font-size: 28px;
    color: #004d99;
    font-weight: 600;
    margin-bottom: 10px;
}

.info h2 {
    font-size: 22px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

.info hr {
    margin-bottom: 20px;
    border: none;
    height: 1px;
    background-color: #ddd;
}

.info strong {
    font-size: 20px;
    color: #333;
}

/* Redesigned list */
.info ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.info ul li {
    font-size: 18px;
    padding-left: 25px;
    margin-bottom: 1px;
    position: relative;
    color: #555;
}

.info ul li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: #004d99;
    font-size: 22px;
}

/* .register-section {
    text-align: center;
    margin-top: 40px;
} */

hr {
    width: 30%px;
    color: #00aaf3;
    
}