@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: inter;
}
body {
    background-color:black;
    color: white;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}
header ul a{
    color: black ;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-color); 
    background-color: white;
    color: black;
}

.logo img {
    height: 30px; 
}

.main-nav .nav-link {
    color: black;
    background-color: white;
    text-decoration: none;
    font-size: 0.9em;
}


.content-wrapper {
    flex-grow: 1; 
    padding: 40px;
}


.hero-section {
    display: flex;
    align-items: center;
    gap: 50px; 
    margin-bottom: 60px;
}

.hero-image img {
    max-width: 400px; 
    height: auto;
    display: block;
    
}

.hero-text h1 {
    font-family: var(--font-family-headline);
    font-size: 3.5em; 
    line-height: 1.1;
    color: var(--text-color);
}


.study-info h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--text-color);
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
}

.approved-courses,
.current-courses {
    margin-bottom: 20px;
}

.approved-courses h3,
.current-courses h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.approved-courses ul,
.current-courses ul {
    list-style: none; 
}

.approved-courses li,
.current-courses li {
    margin-bottom: 8px;
    font-size: 1.1em;
}


.footer {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 40px;
    border-top: 1px solid var(--border-color); 
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
}

.footer-section p {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.footer-link {
    color: var(--link-color);
    text-decoration: none;
    font-size: 0.9em;
    display: inline-block; 
    margin-right: 10px; 
    
}
footer a {text-decoration: solid;}

.disclaimer {
    grid-column: 1 / -1; 
    margin-top: 40px;
    font-size: 0.8em;
    color: #aaa;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero-text h1 {
        font-size: 2.8em;
    }

    .courses-grid {
        grid-template-columns: 1fr; 
    }

    .footer {
        grid-template-columns: 1fr; 
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px 20px;
    }
    .main-nav {
        margin-top: 10px;
    }
    .content-wrapper {
        padding: 20px;
    }
    .hero-image img {
        max-width: 250px;
    }
    .hero-text h1 {
        font-size: 2.2em;
    }
    .study-info h2 {
        font-size: 1.5em;
    }
    .approved-courses h3,
    .current-courses h3 {
        font-size: 1.1em;
    }
    .approved-courses li,
    .current-courses li {
        font-size: 1em;
    }
    .footer-section p,
    .footer-link,
    .disclaimer p {
        font-size: 0.8em;
    }
}
.barra
{border:0.5px solid white;
}