html{
    scroll-behavior: smooth;
}

        /* Adicionei o CSS diretamente aqui para o exemplo */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
            background-color: #f0f2f5;
        }

        header {
            background-color: #333;
            color: #fff;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        header .logo {
            display: flex;
            align-items: center; /* Alinha os itens ao centro */
        }
        
        header .logo img {
            width: 80px; /* Tamanho do logo */
            margin-bottom: 10px; /* Espaçamento entre a imagem e o texto */
            border-radius: 8px;
        }
        
        header .school-logo,
        header .dgert-logo {
            text-align: center; /* Centraliza o texto */
            margin-left: 20px; /* Espaçamento entre os grupos */
        }
        
        header .school-logo img,
        header .dgert-logo img {
            width: 50px; /* Tamanho das imagens */
            margin-bottom: 5px; /* Espaçamento entre a imagem e o texto */
            border-radius: 8px;
        }
        
        header .school-logo h1,
        header .dgert-logo h1 {
            font-size: 1.2rem; /* Tamanho do texto */
            cursor: pointer; /* Altera o cursor ao passar sobre o texto */
            color: #fff; /* Cor do texto */
        }
        
        header .school-logo h1:hover,
        header .dgert-logo h1:hover {
            color: #f04e23; /* Cor ao passar o mouse */
        }
        

        .hero {
            background: url('../Media/Background.jpg') no-repeat center center/cover;
            color: #fff;
            text-align: center;
            padding: 4rem 1rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .hero .cta-button {
            background: #f04e23;
            color: #fff;
            padding: 0.75em 2em;
            text-decoration: none;
            font-size: 1.2rem;
            border-radius: 5px;
        }

        main {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .course-card {
            background: #fff;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .course-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
        }

        .course-card h3 {
            margin: 1rem 0 0.5rem;
            font-size: 1.5rem;
        }

        .course-card p {
            color: #555;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .course-card .course-button {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background-color: #f04e23;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .course-card .course-button:hover {
            background-color: #333;
        }

        footer {
            background-color: #333;
            color: #fff;
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
        }

        footer .social-icons {
            margin-top: 1rem;
        }

        footer .social-icons a {
            color: #fff;
            text-decoration: none;
            margin: 0 0.5rem;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        footer .social-icons a:hover {
            color: #f04e23;
        }