/* Certifications Section */
.certifications {
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

.certification-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.certification-logo {
    width: 70px;
    height: auto;
    border: 1px solid #2b3a42;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    padding: 5px;
    margin-right: 15px;
    align-self: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-logo:hover, .company-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Text content styling for resume experience items */
.experience-content .text-content {
    font-size: 0.8rem;
    flex: 1;
}

.content-column h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.two-column .content-column {
    width: 47%;
    margin-right: 0;
}

@media (max-width: 768px) {
    .two-column .content-column {
        width: 100%;
        margin-right: 0;
    }
}

/* Move the global styles to target only the resume content */
.resume {
  font-size: 13px;
}

.resume h1 {
  font-size: 22px;
}

.resume h2 {
  font-size: 18px;
}

.resume section {
  margin-bottom: 8px;
}

.resume p {
  line-height: 1.3;
}

.resume .container {
  max-width: 750px;
  margin: 0 auto;
  padding: 8px;
}