body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.header {
    background-color: #f4f4f4;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1, .logo p {
    margin: 0;
    line-height: 1.2;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
}

.sign-up a {
    border: 1px solid #333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #e2eafc; /* A light background color to match the design */
}

.hero-text {
    max-width: 50%;
}

.hero-text h2 {
    font-size: 2.5rem;
}

.hero-image {
    /* Ensures the container doesn't get too large */
    flex-basis: 50%;
    max-width: 50%;
}

.hero-image img {
    /* Ensures the image itself is always responsive and fits its container */
    width: 100%;
    height: auto;
    display: block;
    /* Optional: Add a max-width to the image for very large screens */
    max-width: 600px; /* Adjust this value as needed */
}

.cta-button {
    display: inline-block;
    background-color: #e99400; /* A brownish-orange color */
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

.recent-videos {
    text-align: center;
    padding: 2rem;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.video-item {
    width: 300px; /* Adjust as needed */
    text-align: left;
}

.video-item img {
    width: 100%;
    height: auto;
    display: block;
}

.page-header {
    background-color: #f4f4f4;
    text-align: center;
    padding: 3rem 1rem;
}

.content-section {
    padding: 2rem;
    max