

/* Certificate Section */
.certificate-section {
display: flex;
justify-content: center;
align-items: center;
padding: 0px 0;

}

.certificate-container {
display: flex;
flex-wrap: wrap;
max-width: 1200px;
align-items: center;
gap: 30px;
padding: 1rem;
}

/* Default: Show the Top Image, Hide Bottom Image */
.certificate-image-hero {
display: block;
}

.certificate-right-image-hero {
display: none;
}

.certificate-image {
flex: 1;
text-align: center;
}

.certificate-image img {
width: 100%;
max-width: 500px;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.certificate-content {
flex: 1;
max-width: 600px;
text-align: left;
}

.certificate-title {
font-size: 28px;
font-weight: bold;
color: #333;
margin-bottom: 15px;
}

.certificate-description {
font-size: 18px;
line-height: 1.6;
color: #555;
}

.certificate-note {
font-size: 20px;
font-weight: bold;
color: #222;
margin-top: 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
.certificate-container {
flex-direction: column;
text-align: center;
}

.certificate-content {
max-width: 90%;
text-align: center;
}

.certificate-title {
font-size: 24px;
}

.certificate-description {
font-size: 16px;
}
}

@media (max-width: 768px) {
.certificate-section {
padding: 0px 0%;

}

.certificate-container {
gap: 0;
}

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

.certificate-title {
font-size: 22px;
}

.certificate-description {
font-size: 15px;
line-height: 1.5;
text-align: justify;
}

.certificate-note {
font-size: 18px;
}

/* On Smaller Screens: Hide Top Image, Show Bottom Image */
.certificate-image-hero {
display: none;
}

.certificate-right-image-hero {
display: flex;
justify-content: center;
width: 100%;
padding: 1rem;
}

.certificate-right-image-hero img {
max-width: 80%;
}
}

@media (max-width: 480px) {
.certificate-section {
padding: 0px 5%;
}

.certificate-title {
font-size: 20px;
}

.certificate-description {
font-size: 14px;
line-height: 1.4;
}

.certificate-note {
font-size: 16px;
}

.certificate-right-image-hero img {
max-width: 90%;
}
}
