/* Course Header */
.course-header {
    background-image: url('../img/course_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    padding: 100px 0;
    margin-bottom: 0;
    margin-top: 140px;
    position: relative;
    overflow: hidden;
}

/* Мобильный баннер */
@media (max-width: 968px) {
    .course-header {
        /* background-image: url('../img/course_banner-mob.jpg'); */
        background-position: center center;
    }
}

@media (min-width: 1024px) {
    .course-header {
        padding: 150px 0;
        min-height: 650px;
    }
}

@media (min-width: 1440px) {
    .course-header {
        padding: 180px 0;
        min-height: 750px;
    }
}

.course-header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 60px 0 60px;
    position: relative;
    z-index: 1;
}

.course-main-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
    color: #F68B1E;
    text-shadow: none;
}

.course-subtitle {
    font-size: 30px;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 800px;
    color: #F68B1E;
}

.course-lecturer {
    color: #4A4A4A;
    display: block;
    margin-top: 8px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.program-topics li {
    border-bottom: none !important;
}

.program-image {
    float: right;
    width: 300px;
    margin: 0 0 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Course Info Sections */
.course-info {
    margin-top: 40px;
}

.course-info:first-of-type {
    margin-top: 0;
}

.course-info h2 + p strong {
    font-size: 22px;
    font-weight: 600;
}

.course-goal-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.course-topics li,
.program-topics li {
    font-size: 20px;
    line-height: 1.7;
}

/* Session Blocks */
.session-block {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #F68B1E;
}

.session-block:last-child {
    margin-bottom: 0;
}

.session-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.session-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 25px;
    font-style: italic;
}

/* Event Photos Grid */
.event-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.event-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Lecturer Section */
.lecturer-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.lecturer-photo-wrapper {
    flex: 0 0 280px;
}

.lecturer-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lecturer-info {
    flex: 1;
    min-width: 300px;
}

.lecturer-name {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.lecturer-credentials {
    list-style: none;
    padding: 0;
}

.lecturer-credentials li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 20px;
    line-height: 1.7;
}

.lecturer-credentials li span {
    position: absolute;
    left: 0;
    color: #2C3E50;
}

/* Lecturer Quote */
.lecturer-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #F68B1E;
    border-radius: 12px;
    padding: 40px 50px;
    margin-top: 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-text {
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: #2C3E50;
    margin: 0 0 20px 0;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: 18px;
    font-weight: 500;
    color: #6c757d;
    font-style: normal;
    display: block;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .lecturer-quote {
        padding: 30px 35px;
    }

    .quote-text {
        font-size: 24px;
    }

    .quote-author {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lecturer-quote {
        padding: 25px 25px;
        margin-top: 30px;
    }

    .quote-icon {
        width: 36px;
        height: 36px;
        top: 15px;
        left: 20px;
    }

    .quote-text {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .quote-author {
        font-size: 15px;
    }
}

/* Информация для участников */
.participant-info-section {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    padding-bottom: 20px;
}

.section-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F68B1E, #FFA500);
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.info-icon {
    color: #F68B1E;
    flex-shrink: 0;
}

.info-card-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

/* Schedule Card */
.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: flex;
    gap: 20px;
    padding: 14px 18px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #F68B1E;
    transition: background 0.2s ease;
}

.schedule-item:hover {
    background: #e9ecef;
}

.schedule-item strong {
    min-width: 120px;
    color: #2C3E50;
    font-weight: 600;
    font-size: 15px;
}

.schedule-item span {
    color: #495057;
    font-size: 15px;
    line-height: 1.5;
}

/* Venue & Organizer Combined Card */
.venue-organizer-card {
    grid-column: span 1;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.venue-name {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.venue-address {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
    margin: 25px 0;
}

.organizer-section {
    margin-top: 25px;
}

.organizer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.organizer-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.organizer-header .info-icon {
    color: #F68B1E;
    flex-shrink: 0;
}

/* Organizer Details */
.organizer-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.organizer-name {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item strong {
    color: #2C3E50;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item span {
    color: #495057;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #F68B1E;
}

/* Responsive */
@media (max-width: 968px) {
    .course-header {
        padding: 80px 0;
        margin-top: 120px;
    }

    .course-header-content {
        padding: 20px 40px 0 40px;
    }

    .course-main-title {
        font-size: 42px;
    }

    .course-subtitle {
        font-size: 24px;
    }

    .participant-info-section {
        padding: 40px 30px;
    }

    .section-main-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .course-header {
        margin-top: 160px;
    }

    .course-page .container {
        padding: 0 15px;
    }

    .course-content {
        padding: 0 10px;
    }

    .course-info {
        padding: 30px 25px;
    }

    .schedule-item {
        flex-direction: column;
        gap: 8px;
    }

    .schedule-item strong {
        min-width: auto;
    }

    .info-card {
        padding: 25px;
    }

    .info-card-header h3 {
        font-size: 20px;
    }

    .session-block {
        padding: 20px;
    }

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

    .session-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .course-header {
        padding: 60px 0;
        margin-top: 140px;
    }

    .course-header-content {
        padding: 20px 20px 0 20px;
    }

    .course-main-title {
        font-size: 32px;
    }

    .course-subtitle {
        font-size: 20px;
    }

    .course-page .container {
        padding: 0 12px;
    }

    .course-content {
        padding: 0 5px;
    }

    .course-info {
        padding: 25px 20px;
    }

    .course-info h2 {
        font-size: 24px;
    }

    .course-info h2 + p strong {
        font-size: 20px;
    }

    .course-goal-text {
        font-size: 20px;
        line-height: 1.7;
    }

    .course-topics li,
    .program-topics li {
        font-size: 18px;
        line-height: 1.6;
        padding-left: 25px;
    }

    .participant-info-section {
        padding: 30px 18px;
        margin-top: 40px;
    }

    .section-main-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .info-grid {
        gap: 20px;
    }

    .info-card {
        padding: 20px 18px;
    }

    .info-card-header {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .info-card-header h3 {
        font-size: 18px;
    }

    .schedule-item {
        padding: 12px 15px;
    }

    .schedule-item strong {
        font-size: 14px;
    }

    .schedule-item span {
        font-size: 14px;
    }

    .venue-name,
    .organizer-name {
        font-size: 18px;
    }

    .venue-address {
        font-size: 15px;
    }

    .contact-item span {
        font-size: 14px;
    }

    .program-image {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }

    .lecturer-photo-wrapper {
        flex: 0 0 100%;
    }

    .lecturer-name {
        font-size: 24px;
    }

    .lecturer-credentials li {
        font-size: 18px;
    }

    .session-block {
        padding: 18px;
        margin-bottom: 30px;
    }

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

    .session-subtitle {
        font-size: 16px;
    }
}

/* Registration Button */
/* Registration Button Container - Mobile: Fixed at bottom */
.registration-button-container {
    /* Mobile: Fixed at bottom */
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 500px;
    margin: 0;
    padding: 0;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

/* Base button styles */
.registration-button {
    background: #F68B1E;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(246, 139, 30, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: static;
    transform: none;
    flex: 1;
    min-width: 0;
    pointer-events: auto;
    margin: 0;
    width: auto;
    max-width: none;
}

.registration-button:hover {
    background: #e67e1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(246, 139, 30, 0.5);
}

.registration-button:active {
    transform: translateY(-1px);
}

/* Ask Question Button in container */
.registration-button-container .btn-ask-question {
    padding: 16px 20px;
    background: #F68B1E;
    color: #4A4A4A;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 25px rgba(246, 139, 30, 0.4);
    pointer-events: auto;
    position: static;
    transform: none;
    flex: 1;
    min-width: 0;
    margin: 0;
    width: auto;
    max-width: none;
}

.registration-button-container .btn-ask-question:hover {
    background: #e67e1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(246, 139, 30, 0.5);
}

/* Desktop: Ask Question button - static at bottom of content */
@media (min-width: 769px) {
    /* Ask Question container - static, not fixed */
    .registration-button-container:has(.btn-ask-question) {
        position: static;
        transform: none;
        width: auto;
        max-width: none;
        margin-top: 60px;
        margin-bottom: 40px;
        padding: 60px 0;
        text-align: center;
        pointer-events: auto;
    }

    .registration-button-container:has(.btn-ask-question) .btn-ask-question {
        flex: 0 1 auto;
        font-size: 18px;
        padding: 18px 40px;
        display: inline-block;
    }

    /* Registration button container - fixed at bottom right */
    .registration-button-container:has(.registration-button) {
        position: fixed;
        left: auto;
        right: 120px;
        bottom: 50px;
        transform: none;
        width: auto;
        max-width: none;
        flex-direction: row;
        gap: 15px;
    }

    .registration-button-container:has(.registration-button) .registration-button {
        flex: 0 1 auto;
        font-size: 20px;
        padding: 20px 60px;
        background: linear-gradient(135deg, #F68B1E 0%, #FFA500 100%);
        color: #ffffff;
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    }

    .registration-button-container:has(.registration-button) .registration-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
        background: linear-gradient(135deg, #FFA500 0%, #F68B1E 100%);
    }
}

/* Spacer to prevent content from being hidden behind fixed buttons */
.course-content {
    padding-bottom: 120px;
}

@media (min-width: 769px) {
    .course-content {
        padding-bottom: 60px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.2s ease;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #2C3E50;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 24px;
    text-align: center;
}

/* Form Styles */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    color: #2C3E50;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.form-input:focus {
    outline: none;
    border-color: #F68B1E;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input.error {
    border-color: #dc3545;
}

.form-input.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-submit {
    background: linear-gradient(135deg, #F68B1E 0%, #FFA500 100%);
    color: #2C3E50;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: #ffffff;
    color: #F68B1E;
    border: 1px solid #F68B1E;
}

.form-submit:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 12px 0;
}

.success-message.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    margin-bottom: 16px;
    animation: scaleIn 0.5s ease;
}

.success-icon circle,
.success-icon path {
    stroke: #28a745 !important;
}

.success-message h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 16px;
}

.success-message p {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 10px;
}

.success-button {
    background: linear-gradient(135deg, #F68B1E 0%, #FFA500 100%);
    color: #2C3E50;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 28px 24px;
    }

    .modal-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* Both containers fixed at bottom, positioned side by side */
    .registration-button-container:has(.btn-ask-question) {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(calc(-50% - 110px));
        width: 44%;
        max-width: 220px;
        z-index: 999;
    }

    .registration-button-container:has(.registration-button) {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(calc(-50% + 110px));
        width: 44%;
        max-width: 220px;
        z-index: 999;
    }

    .registration-button-container .registration-button,
    .registration-button-container .btn-ask-question {
        font-size: 14px;
        padding: 16px 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Keep fixed button styles for mobile */
    .registration-button-container:has(.btn-ask-question),
    .registration-button-container:has(.registration-button) {
        width: 45%;
        max-width: 180px;
        bottom: 20px;
    }

    .registration-button-container:has(.btn-ask-question) {
        left: 50%;
        transform: translateX(calc(-50% - 95px));
    }

    .registration-button-container:has(.registration-button) {
        left: 50%;
        transform: translateX(calc(-50% + 95px));
    }

    .registration-button-container .registration-button,
    .registration-button-container .btn-ask-question {
        font-size: 13px;
        padding: 14px 16px;
    }

    .modal-content {
        padding: 24px 20px;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .modal-form {
        gap: 14px;
    }

    .form-input {
        padding: 11px 14px;
        font-size: 14px;
    }

    .form-submit {
        padding: 12px 24px;
        font-size: 14px;
    }

    .success-message h3 {
        font-size: 18px;
    }

    .success-message p {
        font-size: 14px;
    }

    .success-button {
        padding: 11px 32px;
        font-size: 14px;
    }
}

/* Modal Images */
.modal-images-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.modal-images-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 480px) {
    .modal-images-grid {
        grid-template-columns: 1fr;
    }
}

/* Link Styles */
.text-link {
    color: #F68B1E;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.text-link:hover {
    opacity: 0.8;
}
/* Read More Functionality */
.read-more-content {
    display: none;
}

.read-more-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.read-more-btn {
    background: none;
    border: 2px solid #F68B1E;
    color: #2C3E50;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    background: #F68B1E;
    color: #ffffff;
}

.read-less-btn {
    background: none;
    border: 2px solid #F68B1E;
    color: #2C3E50;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-less-btn:hover {
    background: #F68B1E;
    color: #ffffff;
}
