/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background: #0073e6;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Navigation Menu */
nav {
    display: flex;
    justify-content: center;
    background: #005bb5;
    padding: 1rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
}

nav a:hover {
    background: #003f7f;
    border-radius: 5px;
}

/* Main Content */
.container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* About Section */
.about-section {
    text-align: center;
    padding: 20px;
    font-family: "Calibri";
}

/* Image Styling */
.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    background: #0073e6;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.justified-text {
    text-align: justify;
}

.reason-list, .use-cases {
    padding-left: 20px;
}
.reason-list li, .use-cases li {
    margin: 10px 0;
}
.highlight {
    font-weight: bold;
    color: grey;
}

.highlight2 {
    font-weight: bold;
    color: brown;
}

h2{color: #003f7f;}

iframe { width: 100%; height: 200px; border: 1px solid #ccc; }

code {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    padding: 10px;
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
}