body {
    background: #f4f7fb;
    font-family: 'Inter', sans-serif;
    color: #2c3e50;
}

.page-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1d3557;
    letter-spacing: 0.5px;
}

/* Logo */
.logo-wrapper {
    display: flex;
    justify-content: center;
}
.logo-frame {
    width: 180px;
    height: 95px;
    padding: 25px;
    border-radius: 5px;
    object-fit: cover;
    background: #001F38;
}\
.search-box {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.search-box:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.certificate-card {
    border-radius: 12px;
    border: 1px solid #eaeaea;
    background: #fff;
    padding: 20px;
}

.certificate-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #007bff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-title {
    font-weight: 600;
    color: #007bff;
    margin-left: 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item .label {
    font-weight: 500;
    color: rgba(0,0,0,0.55);
    min-width: 160px;
}

.info-item .value {
    font-weight: 600;
    color: #2c3e50;
}

.info-item .event-link {
    text-decoration: underline;
    color: #007bff;
}

.alert {
    max-width: 600px;
    margin: 20px auto;
    font-weight: 500;
}

.disclaimer-text {
    opacity: 0.65;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .certificate-avatar {
        width: 120px;
        height: 120px;
    }

    .info-item .label {
        min-width: 130px;
    }

    .search-box {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .certificate-avatar {
        width: 100px;
        height: 100px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-item .label {
        min-width: 0;
        margin-bottom: 2px;
    }

    .search-box {
        padding: 15px 10px;
    }
}
