body {
            margin: 0;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .container {
            max-width: 10000px;
            width: 100%;
            margin: 0 auto;
        }

        header {
            background-color: #46859e;
            color: white;
            padding: 10px 0;
            text-align: center;
        }

        .header-content {
            display: flex;
            justify-content: center; 
            align-items: center;
            position: relative;     
            max-width: 1200px;
            margin: 0 auto;
            height: 50px;         
        }

        .header-title {
            position: absolute;      
            left: 20px;             
            font-size: 1.5rem;
            margin: 13px;
            color: white;
        }

        nav {
            display: flex;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            padding: 5px 10px;
            border-radius: 5px;
        }

        nav a:hover {
            background-color: grey;
        }

         nav a.active {
            background-color: rgb(61, 59, 59);
            color: white;
        }

        .content {
            height: 875px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #f5f5f5;

        }

        #profile-picture {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .perfil-container {
            text-align: center;
        }

/*CONTACT*/
        .container-contact{
            height: 100x;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: white
        
        }

/*ABOUT*/
        img {
            width: 250px;
            height: 180px;
            object-fit: cover;
            margin: 10px;
            border-radius: 5px;
        }
        .cv-box {
            margin: 30px 0;
            padding: 20px;
            border: 1px solid #ddd;
            display: inline-block;
        }
        .links a {
            margin: 10px;
            text-decoration: none;
            color: blue;
        }

/*DEGREE*/

        

        .container-degree {
            margin-top: 1000px;
            padding: 20px;
            width: 90%;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 200px;
            background-color: white;
        }

        h1 { color: black;
            margin-bottom: 5px;
            margin-top: 100px;
        }

        h2 { 
            color: #2c3e50; 
            margin-top: 35px; 
            padding-bottom: 5px;
            border-bottom: 3px solid #46859e;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        th, td { border: 1px solid black; 
            padding: 10px; 
            text-align: left; 
            background-color: white; 
        }

        th {
            background-color: #46859e;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
  /*FCE SUBJECT*/

        .container-fce {
            max-width: 850px;
            margin: 40px auto;
            background: white;
            padding: 40px;
            text-align: left;
        }

        .section {
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }


        .badge {
            font-size: 1rem;
            margin-right: 2px;
        }

        .header-fce { color: black;
            margin-bottom: 5px;
            margin-top: 100px;
        }

/*NET*/
        .container-net {
            margin-top:10px;
            padding: 20px;
            width: 90%;
            max-width: 900px;
            text-align: center;
            padding-bottom: 100px;
            margin-left: auto;
            margin-right: auto;
        }

        .net-grid {
            display: grid;
            gap: 20px;
        }

        .student-card {
            background: white;
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd; 
            text-decoration: none;
            color: #333;
        }

        .student-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            background-color: #eee;
        }

        .student-info {
            text-align: left;
        }

        .student-name {
            font-weight: bold;
            font-size: 1.1rem;
            display: block;
        }

        .student-link {
            color: #46859e;
            font-size: 0.85rem;
        }

/*TOPIC*/
.container-topic {
            margin-top:15px;
            max-width: 800px;
            width: 90%;
            background: white;
            padding: 40px;
            text-align: left;
        }

        p {
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .image-container {
            text-align: center;
            margin: 30px 0;
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .image-caption {
            font-size: 0.9em;
            color: #666;
        }

        ul {
            list-style-type: decimal; /* Números para los pasos */
            margin-left: 20px;
            line-height: 1.6;
        }