body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

#ai-student-report {
    background: #f0f8ff;
    padding: 40px
}

#ai-student-report .report-inner {
    color: #333;
    background: white;
    padding: 20px;
    border-radius: 20px;
}

.cv-landing-page {
    text-align: center;
    padding: 60px 20px;
    background: #f0f8ff;
}

.cv-landing-page h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #006064;
}

.cv-landing-page p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #000000;
    font-weight: 400;
}

.start-btn {
    padding: 12px 30px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.start-btn:hover {
    background-color: #0056b3;
}

.cv-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.cv-features .feature {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 40%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cv-features .feature h3 {
    margin-bottom: 10px;
    color: #007bff;
}

.cv-features .feature p {
    font-size: 14px;
    color: #666;
}

.cv-form-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background: #f9fbfc;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

#cv-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

#cv-form label {
    display: block;
    font-weight: 400;
    margin-bottom: 8px;
    color: #333;
    text-align: left;
    font-size: medium;
}

#cv-form input[type="tel"],
#cv-form input[type="text"],
#cv-form input[type="email"],
#cv-form select,
#cv-form textarea {
    width: -webkit-fill-available;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.3s;
}

#cv-form input[type="tel"]:focus,
#cv-form input[type="text"]:focus,
#cv-form input[type="email"]:focus,
#cv-form select:focus,
#cv-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group.otp-group {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: end;
}

#cv-form button[type="button"],
#cv-form button[type="submit"] {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid #007bff;
}

#cv-form button[type="button"]:hover,
#cv-form button[type="submit"]:hover {
    background: #0056b3;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    font-size: 15px;
}

.form-error {
    background: #ffe0e0;
    color: #d10000;
    padding: 10px 15px;
    border: 1px solid #d10000;
    border-radius: 4px;
}

.generating-report {
    background: #e3e3e3;
    padding: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    margin: 20px 0;
}

.loading-container {
    text-align: center;
    margin: 30px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.consent-box {
    margin-bottom: 20px;
    background: #ffa50040;
    padding: 20px;
    border-radius: 20px;
}

#download-pdf {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

#download-pdf:hover {
    background: #218838;
}

.otp-verification {
    margin-bottom: 20px;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.otp-verification .form-group {
    margin-bottom: 0;
    width: 100%;
}

div#otp-status {
    font-weight: 400;
    margin-bottom: 8px;
    color: #333;
    text-align: left;
    font-size: medium;
}

button#verify-otp,
button#send-otp {
    margin-left: 20px;
}

.tel-error {
    background: #ebebeb;
    color: #ebebeb;
    border: 1px solid #ebebeb;
    border-radius: 4px;
}

div#tel-error p {
    margin: 0;
    padding: 10px 0;
}

input::placeholder,
textarea::placeholder {
    font-size: 12px;
    color: #888888;
}

.cv-landing-page {
    max-width: 70%;
}

@media (max-width: 768px) {
    .cv-features {
        flex-direction: column;
        align-items: center;
    }

    .cv-features .feature {
        width: 80%;
    }

    .checkbox-group {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .otp-verification,
    .form-group.otp-group {
        flex-direction: column;
        gap: 10px;
    }
}