/* CSS Document */

/* styles.css */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}

h1, h2, h3 {
    color: #343a40;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2rem;
    margin-top: 10px;
    color: #007bff; /* LinkedIn blue for the header */
}

header p {
    font-size: 1rem;
    color: #6c757d;
}

section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #007bff; /* LinkedIn blue for section headers */
    padding-bottom: 0.5rem;
    color: #007bff; /* LinkedIn blue for section titles */
}

section p, section ul {
    font-size: 1rem;
    color: #495057;
    margin-top: 5px;
}

ul.list-disc {
    padding-left: 20px;
}

a {
    text-decoration: none;
    color: white; /* Ensures contrast on blue background */
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #0056b3;
}

details summary {
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1a202c;
    outline: none;
}

details summary:hover {
    color: #2b6cb0;
}

.bg-blue-500 {
    background-color: #007bff;
}

.bg-blue-600 {
    background-color: #0056b3;
}

.text-blue-500 {
    color: #007bff;
}

.text-blue-600 {
    color: #0056b3;
}

.text-gray-700 {
    color: #495057;
}

.text-gray-800 {
    color: #343a40;
}

.text-gray-900 {
    color: #212529;
}

.text-muted {
    color: #6c757d;
}

.container {
    background-color: #ffffff; /* White background for container */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

header, section {
    padding: 16px; /* Padding for better spacing */
}

header h1, section h2 {
    text-align: center; /* Center-align headers */
}

section ul.list-disc {
    list-style-type: disc; /* Standard disc bullets */
}

.section-content {
    margin-top: 16px; /* Spacing for section content */
}

.image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.centered-image {
    max-width: 100%;
    height: auto;
}

