@import url('https://fonts.googleapis.com/css2?family=Klein&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque&display=swap');

/* General styles */
body {
    margin: 0;
    font-family: klien, sans-serif;
    line-height: 1.6;
    color: #0F163E;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Page Header */
.page-header {
    background-color: #0F163E; /* Header background color */
    color: #ffffff; /* Header text color */
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Allows the logo to stay on the left */
}

.page-header .header-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center; /* Center the title */
}
.page-header .logo img {
    width: 50px; /* Set the width of the logo */
    height: 50px; /* Set the height of the logo */
    object-fit: contain; /* Ensure the image fits within the specified dimensions */
}

.page-header .logo {
    position: absolute;
    left: 10%; /* Adjust if necessary */
}

.get-started-page {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.side-panel {
    display: none; /* Hidden by default, visible on larger screens */
    position: sticky;
    top: 20px;
    max-width: 200px;
}

.side-panel ul {
    list-style-type: none;
    padding: 0;
}

.side-panel ul li {
    margin-bottom: 10px;
}

.side-panel ul li a {
    text-decoration: none;
    color: #0F163E;
    font-weight: bold;
}

.side-panel ul li a:hover {
    text-decoration: underline;
    color: #F59830;
}
.content {
    flex: 1;
}

.content p{
    max-width: 60em; /* Approximate width for 100 words */
}
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #F59830;
}

/* Footer Styles */
footer {
    background-color: #ffffff;
    color: #0F163E;
    text-align: center;
    padding: 20px 30px;
}


footer a {
    text-decoration: underline;
    margin: 0 10px;
}

footer .socials {
    display: flex;
    justify-content: center; /* Center social icons horizontally */
    margin-top: 10px; /* Space between other footer elements and social icons */
    max-height: 20px;
}

footer .socials a {
    margin: 0 10px; /* Space between social icons */
    color: #fff; /* Color of social icons */
    font-size: 24px; /* Size of social icons */
    text-decoration: none; /* Remove underline from links */
}
/* Styles for sub-sections */
.sub-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.sub-section h3 {
    font-size: 1.2em;
    color: #333;
}

.sub-section p {
    font-size: 1em;
    color: #666;
}
/* Responsive styles */
@media(min-width: 768px) {
    .get-started-page {
        flex-direction: row;
    }

    .side-panel {
        display: block; /* Show side panel on larger screens */
        margin-right: 20px;
    }

    p {
        max-width: 100%; /* Allow natural wrapping on mobile */
    }
}
