* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    min-height: 100vh;
}

.scholar-container {
    position: relative;
    padding-bottom: 40px;
}

.scholar-header {
    margin-top: 50px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scholar-header-title {
    font-size: 56px;
    color: #070d1b;
    line-height: 1.5;
}

.scholar-header-title span {
    padding: 2px 8px;
    border-radius: 8px;
    background-color: #f28a1f;
    color: #fff;
}

.scholar-header-title .beta-icon {
    color: #f28a1f;
    vertical-align: text-top;
}

.scholar-header-subtitle {
    margin: 20px auto;
    font-size: 18px;
    color: #333333;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.scholar-header-subtitle span {
    color: #f27a1f;
}

.search-container {
    position: relative;
    width: 90%;
    max-width: 840px;
    margin: 70px auto 40px;
    padding: 36px 20px;
    border-radius: 20px;
    box-shadow: rgba(160, 38, 255, 0.22) 0px 0px 28px;
}

.search-input {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 32px;
}

.search-input-field {
    width: 100%;
    height: 48px;
    padding: 0 50px 0 18px;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.2s ease-in-out;
    font-size: 16px;
}

.search-input-field:focus {
    border-color: #f28a1f;
}

.search-input-button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #f28a1f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-example-questions {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.example-question {
    width: 100%;
    max-width: 300px;
    padding: 10px 20px;
    border: 1px solid #e6e6e6;
    border-radius: 999px;
    transition: background-color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.example-question:hover {
    border-color: #e6e6e6;
    background-color: #e6e6e6;
}