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

body {
    font-family: Arial, sans-serif;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 300vh;
}

:root{
    --Side-color: #1f242d;
    --second-Side-color: #323946;
    --text-color: #fff;
    --main-color: #0ef;
}

.container {
    width: 850px;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Left Side */
.sidebar {
    background-color: var(--Side-color);
    color: white;
    padding: 20px;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.sidebar h1 {
    font-size: 20px;
    margin-bottom: 10px;
}

.sidebar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.sidebar .contact-info {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar h3 {
    font-size: 14px;
    margin-top: 20px;
    color: var(--main-color);
    text-transform: uppercase;
    font-weight: bold;
}

.sidebar ul {
    list-style: none;
    font-size: 13px;
    margin-top: 10px;
}

.sidebar ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.sidebar ul li:before {
    content: "• ";
    color: var(--main-color);
    position: absolute;
    left: 0;
}

/* Right Side */
.content {
    padding: 40px;
    width: 70%;
}

.content h2 {
    font-size: 18px;
    color: var(--second-Side-color);
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.content h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    color: #333;
}

.content p {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.content .section {
    margin-bottom: 25px;
}

.content .section p {
    font-size: 13px;
    margin: 5px 0;
}

.course {
    padding: 1px 0;
    border-bottom: 1px solid #ccc; 
 
}

a {
    color: #00bfa5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        width: 100%;
        flex-direction: row;
    }

    .sidebar {
        width: 40%; /* Make the sidebar narrower on small screens */
        padding: 15px;
    }

    .sidebar img {
        width: 80px;
        height: 80px;
    }

    .sidebar h1 {
        font-size: 16px;
    }

    .sidebar .contact-info {
        font-size: 11px;
    }

    .sidebar h3 {
        font-size: 12px;
    }

    .sidebar ul {
        font-size: 12px;
    }

    .content {
        width: 60%; /* Adjust content width to fit alongside the sidebar */
        padding: 20px;
    }

    .content h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .content h3 {
        font-size: 14px;
    }

    .content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 50%; /* Further adjust sidebar width on very small screens */
        padding: 10px;
    }

    .sidebar img {
        width: 70px;
        height: 70px;
    }

    .sidebar h1 {
        font-size: 14px;
    }

    .content {
        width: 50%; /* Further adjust content width on very small screens */
        padding: 15px;
    }

    .content h2 {
        font-size: 14px;
    }

    .content h3 {
        font-size: 12px;
    }

    .content p {
        font-size: 11px;
    }
}