h1 {
    font-family: "Tiempos Headline", seris;
}

h2 {
    margin-bottom: 20px;
}

.badge-one {
    display: inline-block;
    background-color: #e0f7fa;
    color: #00796b;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: 10px;
    width: 169px;
}

.badge-two {
    display: inline-block;
    background-color: #e0f7fa;
    color: #00796b;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: 10px;
    width: 218px;
}

.additional-text {
    font-size: 16px;
    color: #2a3e52;
    margin-top: 20px;
    line-height: 1.5;
}

.additional-text a {
    text-decoration: none;
    color: #00a0d2;
}

.badge-start {
    display: inline-block;
    background-color: #e0f7fa;
    color: #00796b;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: 10px;
    width: 229px;
}

h2 {
    margin-bottom: 20px;
}

.three-columns {
    display: flex;
}

.column {
    flex: 1;
    margin-right: 20px;
}

.column:last-child {
    margin-right: 0;
}

h1 {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
}

.process-container {
   width: 100%;
   padding-left: 0;
   padding: 0;
}

.step {
   display: flex;
   align-items: flex-start;
   margin-bottom: 10px;
}

.number {
   font-size: 24px;
   font-weight: bold;
   color: #169de0;
   margin-right: 20px;
   border-left: 2px solid #169de0;
   padding-left: 10px;
}

.step-content {
   max-width: 100%;
}

.step-content h2 {
   margin: 0;
   font-size: 20px;
   color: #2a3e52;
}

.step-content p {
   font-size: 16px;
   color: #55697e;
   margin-top: 0px;
}

.container-fluid.my-5 .row {
    margin-bottom: 20px;
}

.box {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1;
    min-height: 250px; 
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    transition: transform 0.3s ease-in-out;
}

.box:hover {
    transform: scale(1.05);
}

.box p {
    font-size: 1.1rem;
    color: #333;
    flex-grow: 1; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

.box::before {
    content: "🎓"; 
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.info-box {
    background: linear-gradient(135deg, #ffffff, #f4f4f4); 
    border-left: 4px solid #007bff; 
    border-right: none; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
    border-radius: 12px; 
    padding: 24px; 
    font-family: 'Arial', sans-serif; 
    font-size: 16px;
    color: #333; 
    max-width: 800px; 
    line-height: 1.6; 
}

.info-box p {
    line-height: 1.8;
    color: #2a3e52;
}

.info-box-right {
    background: linear-gradient(135deg, #ffffff, #f4f4f4); 
    border-right: 4px solid #007bff; 
    border-left: none; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
    border-radius: 12px; 
    padding: 24px;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #333;
    max-width: 800px;
    line-height: 1.6;
}

.info-box-right p {
    line-height: 1.8;
    color: #2a3e52;
}

.calculator-gnm {
    position: absolute;
    top: 85%;
    left: 75%;
    width: 85px;
    height: 120px;
    background: #000;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: wave 1.5s ease-in-out infinite alternate;
}

.display {
    width: 60%;
    height: 25px;
    background: gold;
    color: black;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.student-hat {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 45px;
}

.hat-top {
    width: 100%;
    height: 25px;
    background: white;
    border-radius: 50% 50% 0 0;
    border: 3px solid black;
}

.hat-band {
    width: 100%;
    height: 10px;
    background: darkred;
    border-bottom: 3px solid black;
    position: absolute;
    top: 20px;
}

.gold-button {
    width: 12px;
    height: 12px;
    background: gold;
    border-radius: 50%;
    position: absolute;
    top: 22px;
    right: 10px;
    border: 2px solid black;
}

.confirmation-box {
    max-width: 600px;
    margin: 100px auto;
    background-color: #f0f9ff;
    border: 2px solid #b3e0ff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.confirmation-box h2 {
    font-size: 24px;
    color: #0077cc;
    margin-bottom: 20px;
}

.confirmation-box a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.confirmation-box a:hover {
    background-color: #005fa3;
}

@keyframes wave {
    0% { transform: rotate(-5deg) translateY(-3px); }
    100% { transform: rotate(5deg) translateY(3px); }
}

@media screen and (max-width: 400px) {
    .badge-start {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 248px;
    }

    .badge-one {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 182px;
	   margin-top: 10px;
    }

    .badge-two {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 235px;
	   margin-top: 10px;
    }

	.start-button {
        margin-bottom: 10px; 
    }

    .image-section img {
        margin-top: 10px; 
    }
}

@media screen and (min-width: 401px) and (max-width: 720px) {
    .badge-start {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 248px;
    }

    .badge-one {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 182px;
	   margin-top: 10px;
    }

    .badge-two {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 235px;
	   margin-top: 10px;
    }

	.start-button {
        margin-bottom: 10px; 
    }

    .image-section img {
        margin-top: 10px; 
    }
}

@media screen and (min-width: 721px) and (max-width: 768px) {
    .badge-start {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 248px;
    }

    .badge-one {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 182px;
	   margin-top: 10px;
    }

    .badge-two {
       display: inline-block;
       background-color: #e0f7fa;
       color: #00796b;
       padding: 5px 10px;
       border-radius: 5px;
       font-size: 12px;
       margin-bottom: 10px;
       width: 235px;
	   margin-top: 10px;
    }

	.start-button {
        margin-bottom: 10px; 
    }

    .image-section img {
        margin-top: 10px; 
    }
}

@media (max-width: 1024px) {
    .container-fluid.my-5 .row {
        flex-direction: column; 
        align-items: center;
    }

    .col-md-6 {
        width: 100%; 
        padding: 20px;
    }

    h1 {
        font-size: 1.6rem; 
    }

    .process-container {
        padding: 20px; 
    }

    .step-content h2 {
        font-size: 1.5rem;
    }

    .step-content p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .badge-one, .badge-two, .badge-start {
        font-size: 14px;
        padding: 5px 15px; 
        width: auto; 
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container-fluid.my-5 .row {
        margin: 20px 0;
    }

    .image-section img {
        margin-bottom: 20px; 
    }

    .process-container {
        text-align: center;
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .step-content {
        text-align: left;
    }

    .number {
        font-size: 20px;
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .main-content,
    .right-section-two,
    .left-section {
        padding: 10px; 
    }

    .start-button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .badge-one, .badge-two, .badge-start {
        font-size: 12px;
        padding: 5px 10px;
    }
}