/* Custom styles for login, register and forgot password modals */
#loginModal .modal-content,
#registerModal .modal-content,
#forgotPasswordModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 90vh; /* Limit height to 90% of viewport height */
}

#loginModal .modal-header,
#registerModal .modal-header,
#forgotPasswordModal .modal-header {    
    background: #50bfda;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0; /* Prevent header from shrinking */
}

#loginModal .modal-title,
#registerModal .modal-title,
#forgotPasswordModal .modal-title {
    font-family: "Mitr", sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}

#loginModal .btn-close,
#registerModal .btn-close,
#forgotPasswordModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#loginModal .btn-close:hover,
#registerModal .btn-close:hover,
#forgotPasswordModal .btn-close:hover {
    opacity: 1;
}

#loginModal .modal-body,
#registerModal .modal-body,
#forgotPasswordModal .modal-body {
    padding: 30px 25px;
    overflow-y: auto; /* Enable scrolling for content */
    max-height: calc(90vh - 120px); /* Subtract header height */
}

#loginModal .form-label,
#registerModal .form-label,
#forgotPasswordModal .form-label {
    font-family: "Mitr", sans-serif;
    font-weight: 500;
    color: #212529;
    margin-bottom: 8px;
}

#loginModal .form-control,
#registerModal .form-control,
#forgotPasswordModal .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#loginModal .form-control:focus,
#registerModal .form-control:focus,
#forgotPasswordModal .form-control:focus {
    border-color: #50bfda;
    box-shadow: 0 0 0 0.2rem rgba(80, 191, 218, 0.25);
}

#loginModal .form-check-label,
#registerModal .form-check-label,
#forgotPasswordModal .form-check-label {
    font-family: "Mitr", sans-serif;
    font-size: 16px;
}

#loginModal .login-submit-btn,
#registerModal .register-submit-btn,
#forgotPasswordModal .forgot-submit-btn {
    width: 100%;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    background: #50bfda;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

#loginModal .login-submit-btn:hover,
#registerModal .register-submit-btn:hover,
#forgotPasswordModal .forgot-submit-btn:hover {
    background: #3da8c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 191, 218, 0.3);
}

#loginModal .login-submit-btn:disabled,
#registerModal .register-submit-btn:disabled,
#forgotPasswordModal .forgot-submit-btn:disabled {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}

#loginModal .text-decoration-none,
#registerModal .text-decoration-none,
#forgotPasswordModal .text-decoration-none {
    color: #50bfda;
    font-family: "Mitr", sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

#loginModal .text-decoration-none:hover,
#registerModal .text-decoration-none:hover,
#forgotPasswordModal .text-decoration-none:hover {
    color: #e21111;
}

/* Switch modal links */
.switch-to-register,
.switch-to-login,
.switch-to-forgot,
.switch-to-login-from-forgot {
    color: #50bfda !important;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.switch-to-register:hover,
.switch-to-login:hover,
.switch-to-forgot:hover,
.switch-to-login-from-forgot:hover {
    color: #e21111 !important;
    text-decoration: underline;
}

/* Animation for modals */
#loginModal.fade .modal-dialog,
#registerModal.fade .modal-dialog,
#forgotPasswordModal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

#loginModal.show .modal-dialog,
#registerModal.show .modal-dialog,
#forgotPasswordModal.show .modal-dialog {
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    #loginModal .modal-dialog,
    #registerModal .modal-dialog,
    #forgotPasswordModal .modal-dialog {
        margin: 10px;
        max-height: 90vh; /* Increase height slightly on mobile */
    }
    
    #loginModal .modal-content,
    #registerModal .modal-content,
    #forgotPasswordModal .modal-content {
        max-height: 90vh; /* Match dialog height */
    }
    
    #loginModal .modal-body,
    #registerModal .modal-body,
    #forgotPasswordModal .modal-body {
        padding: 20px 15px;
        max-height: calc(90vh - 100px); /* Adjust for smaller header on mobile */
    }
    
    #loginModal .modal-header,
    #registerModal .modal-header,
    #forgotPasswordModal .modal-header {
        padding: 15px 20px;
    }
    
    /* Reduce form spacing on mobile */
    #loginModal .mb-3,
    #registerModal .mb-3,
    #forgotPasswordModal .mb-3 {
        margin-bottom: 15px !important;
    }
    
    /* Make form controls slightly smaller on mobile */
    #loginModal .form-control,
    #registerModal .form-control,
    #forgotPasswordModal .form-control {
        padding: 10px 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Reduce button padding on mobile */
    #loginModal .login-submit-btn,
    #registerModal .register-submit-btn,
    #forgotPasswordModal .forgot-submit-btn {
        padding: 10px 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    #loginModal .modal-dialog,
    #registerModal .modal-dialog,
    #forgotPasswordModal .modal-dialog {
        margin: 5px;
        max-height: 90vh;
    }
    
    #loginModal .modal-content,
    #registerModal .modal-content,
    #forgotPasswordModal .modal-content {
        max-height: 90vh;
    }
    
    #loginModal .modal-body,
    #registerModal .modal-body,
    #forgotPasswordModal .modal-body {
        padding: 15px 12px;
        max-height: calc(90vh - 90px);
    }
    
    #loginModal .modal-header,
    #registerModal .modal-header,
    #forgotPasswordModal .modal-header {
        padding: 12px 15px;
    }
    
    #loginModal .modal-title,
    #registerModal .modal-title,
    #forgotPasswordModal .modal-title {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.cc-list__pagination .pg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cc-list__pagination .pg-pagination li {
    list-style: none;
}

.cc-list__pagination .pg-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    color: #212529;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cc-list__pagination .pg-pagination li a:hover,
.cc-list__pagination .pg-pagination li.active a {
    background: #50bfda;
    color: white;
    border-color: #50bfda;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 191, 218, 0.3);
}

/*.cc-list__pagination .pg-pagination li.first a,
.cc-list__pagination .pg-pagination li.prev a,
.cc-list__pagination .pg-pagination li.next a,
.cc-list__pagination .pg-pagination li.last a {
    width: 45px;
    height: 45px;
    font-size: 16px;
    background: #50bfda;
    color: white;
}

.cc-list__pagination .pg-pagination li.first a:hover,
.cc-list__pagination .pg-pagination li.prev a:hover,
.cc-list__pagination .pg-pagination li.next a:hover,
.cc-list__pagination .pg-pagination li.last a:hover {
    background: #3da8c4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 191, 218, 0.3);
}*/

/* Responsive pagination */
@media (max-width: 768px) {
    .cc-list__pagination .pg-pagination li a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .cc-list__pagination .pg-pagination li.first a,
    .cc-list__pagination .pg-pagination li.prev a,
    .cc-list__pagination .pg-pagination li.next a,
    .cc-list__pagination .pg-pagination li.last a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
/* Blog Page Styling */
.blog-page {
    padding: 60px 0;
    background: #fff;
}

/* Blog Category Header - Simple Style */
.blog-category-header {
    margin-bottom: 30px;
    text-align: left;
}

.blog-category-title {
    color: #212529;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    font-family: "Mitr", sans-serif;
    border-left: 4px solid #50bfda;
    padding-left: 15px;
}

/* Blog Card Styling */
.blog-two__single {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    /* height: 100%;  Ensure equal height */
    display: flex;
    flex-direction: column;
}

.blog-two__single:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Blog Image Container */
.blog-two__img {
    position: relative;
    overflow: hidden;
    /* height: 250px; */
    flex-shrink: 0; /* Prevent image from shrinking */
}

.blog-two__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-two__single:hover .blog-two__img img {
    transform: scale(1.1);
}

/* Date Badge - Website Theme Color */
.blog-two__date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFC224 0%, #FFB300 100%);
    color: #212529;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 194, 36, 0.3);
}

.blog-two__date .icon-calendar {
    font-size: 16px;
}

.blog-two__date p {
    margin: 0;
    font-weight: 600;
}

/* Blog Content */
.blog-two__content {
    padding: 25px;
    flex-grow: 1; /* Allow content to grow and fill remaining space */
    display: flex;
    flex-direction: column;
}

/* Meta Box */
.blog-two__meta-box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-details__view {
    color: #212529;
    font-size: 13px;
    font-weight: 500;
}

.blog-details__view span {
    background: transparent;
    padding: 4px 10px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

/* Blog Title */
.blog-two__title {
    min-height: 60px;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1; /* Allow title to grow */
}

.blog-two__title a {
    color: #212529;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-two__title a:hover {
    color: #e21111;
}

/* Blog Text */
.blog-two__text {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0; /* Prevent text from shrinking */
}

/* Row styling to ensure equal height cards */
/*.blog-page .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-page .col-xl-4,
.blog-page .col-lg-4,
.blog-page .col-md-6 {
    display: flex;
    margin-bottom: 30px;
}

.blog-list__pagination {
    margin-top: 50px;
}*/

/* Responsive Design */
@media (max-width: 768px) {
    .blog-page {
        padding: 40px 0;
    }
    
    .blog-category-title {
        font-size: 1.5rem;
    }
    
    .blog-two__content {
        padding: 20px;
    }
    
    .blog-two__title a {
        font-size: 16px;
    }
    
    /* .blog-two__img {
        height: 200px;
    } */
}

@media (max-width: 576px) {
    .blog-category-title {
        font-size: 1.3rem;
        padding-left: 12px;
    }
}

/* Custom scrollbar for blog content */
.blog-two__text::-webkit-scrollbar {
    width: 4px;
}

.blog-two__text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.blog-two__text::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.blog-two__text::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/*--------------------------------------------------------------
# Blog Details Page Styling
--------------------------------------------------------------*/
.blog-details {
    padding: 60px 0;
    background: #fff;
}

/* Blog Details Container */
.blog-details__left {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

/* Blog Image Styling */
.blog-details__img-box {
    position: relative;
    overflow: hidden;
}

.blog-details__img {
    position: relative;
    overflow: hidden;
}

.blog-details__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Content Styling */
.blog-details__content {
    padding: 35px;
}

/* Blog Title */
.blog-details__title-1 {
    color: #212529;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: "Mitr", sans-serif;
}

/* Meta Information */
.blog-details__client-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #50bfda;
}

.blog-details__client-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-weight: 500;
}

.blog-details__client-meta .icon {
    width: 32px;
    height: 32px;
    background: #50bfda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.blog-details__client-meta p {
    margin: 0;
    font-weight: 500;
    color: #212529;
}

/* Author and Share Section */
.blog-details__client-and-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Author Box */
.blog-details__client-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-details__client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #50bfda;
}

.blog-details__client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details__client-content p {
    margin: 0;
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
}

.blog-details__client-content h4 {
    margin: 3px 0 0 0;
    color: #212529;
    font-weight: 600;
    font-size: 16px;
}

/* Share Buttons */
.blog-details__share,
.blog-details__share .btn-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-text-share
.text-share,
.blog-details__share span {
    color: #6c757d;
    font-weight: 500;
    font-size: 14px;
}

.blog-details__share a,
.blog-details__share .btn-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.blog-details__share a:hover,
.blog-details__share .btn-share a:hover {
    transform: translateY(-1px);
}

.blog-details__share a:nth-child(2),
.blog-details__share .btn-share a:nth-child(1) {
    background: #1877f2;
    color: white;
}

.blog-details__share a:nth-child(3),
.blog-details__share .btn-share a:nth-child(2) {
    background: #1da1f2;
    color: white;
}

.blog-details__share a:nth-child(4),
.blog-details__share .btn-share a:nth-child(3) {
    background: #00b900;
    color: white;
}

.blog-details__share a:nth-child(5),
.blog-details__share .btn-share a:nth-child(4) {
    background: #6c757d;
    color: white;
}

/* Quote Box */
.blog-details__quote-box {
    max-width: 100%;
    position: relative;
    display: block;
    border: 2px solid #e21111;
    border-radius: 24px;
    width: 100%;
    padding: 38px 58px 38px;
    margin-top: 69px;
    margin-bottom: 65px;
}

.blog-details__quote-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-style: italic;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;}

.blog-details__quote-icon-1 {
    position: absolute;
    top: -27px;
    left: 46px;
    width: 54px;
    height: 54px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-details__quote-icon-1 span {
    position: relative;
    display: inline-block;
    font-size: 21px;
    color: #e21111;
}

.blog-details__quote-icon-2 {
    position: absolute;
    bottom: -27px;
    right: 130px;
    width: 54px;
    height: 54px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-details__quote-icon-2 span {
    position: relative;
    display: inline-block;
    font-size: 21px;
    color: #e21111;
}

/* Blog Content */
.blog-content {
    margin: 25px 0;
    line-height: 1.7;
    color: #212529;
    font-size: 18px;
}

.blog-content p {
    margin-bottom: 18px;
}

.blog-content img {
    border-radius: 8px;
    margin: 15px 0;
    max-width: 100%;
    height: auto;
}

.blog-content ul {
    margin: 18px 0;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 8px;
    color: #212529;
}

/* Tag and Share Bottom */
.blog-details__tag-and-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 2px solid #50bfda;
}

.blog-details__tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-details__tag span {
    color: #6c757d;
    font-weight: 500;
    font-size: 14px;
}

.blog-details__tag a {
    background: #50bfda;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: background 0.2s ease;
}

.blog-details__tag a:hover {
    background: #3da8c4;
}

.blog-carousel-page {
    background: #f8f9fa;
    padding: 30px 0 60px;
}

.section-title-two {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-details {
        padding: 30px 0;
    }
    
    .blog-details__content {
        padding: 25px;
    }
    
    .blog-details__title-1 {
        font-size: 1.6rem;
    }
    
    .blog-details__img {
        /*height: 250px;*/
    }
    
    .blog-details__client-and-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .blog-details__tag-and-share {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .blog-details__quote-box {
        padding: 20px;
    }
    
    .blog-details__quote-text {
        font-size: 15px;
    }

    .blog-carousel-page  {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    .blog-details__content {
        padding: 20px;
    }

    .list-text-share {
        display: none;
    }
    
    .blog-details__title-1 {
        font-size: 1.4rem;
    }
    
    .blog-details__client-meta {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 14px;
    }
    
    .blog-details__img {
        /*height: 200px;*/
    }
    
    .blog-details__quote-box {
        padding: 15px;
    }
    
    .blog-details__quote-text {
        font-size: 14px;
    }
}

@media (min-width: 1200px) and (max-width: 1313px) {
    .blog-two__content .blog-details__share a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    
}

/* Share Buttons for Blog List */
.blog-list-details__share {
    position: relative;
    display: inline-block;
}

/* Share button positioning for course list */
.courses-two__img-box {
    position: relative;
}

.courses-two__img-box .blog-list-details__share {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.courses-two__img-box .blog-list-details__share .share-options {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: white;
    padding: 6px 10px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.courses-two__img-box .blog-list-details__share:hover .share-options {
    opacity: 1;
    visibility: visible;
    right: 48px;
}

.blog-list-details__share .share-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(80, 191, 218, 0.2);
}

.blog-list-details__share .share-toggle:hover {
    color: #fff;
    background: #6c757d;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(80, 191, 218, 0.3);
}

.blog-list-details__share .share-options {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: white;
    padding: 6px 10px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.blog-list-details__share:hover .share-options {
    opacity: 1;
    visibility: visible;
    right: 48px;
}

.blog-list-details__share .share-options a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.blog-list-details__share .share-options a:hover {
    transform: scale(1.1);
}

.blog-list-details__share .share-options a:nth-child(1) {
    background: #1877f2;
    color: white;
}

.blog-list-details__share .share-options a:nth-child(2) {
    background: #1da1f2;
    color: white;
}

.blog-list-details__share .share-options a:nth-child(3) {
    background: #00b900;
    color: white;
}

.blog-list-details__share .share-options a:nth-child(4) {
    background: #6c757d;
    color: white;
}

/* Responsive adjustments for blog list share button */
/*@media (max-width: 768px) {
    .blog-list-details__share .share-options {
        right: 35px;
        padding: 5px 8px;
        gap: 5px;
    }
    
    .blog-list-details__share:hover .share-options {
        right: 42px;
    }
    
    .blog-list-details__share .share-options a {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .blog-list-details__share .share-options {
        right: 32px;
        padding: 4px 6px;
        gap: 4px;
    }
    
    .blog-list-details__share:hover .share-options {
        right: 38px;
    }
    
    .blog-list-details__share .share-options a {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}*/

/* Equal height for blog carousel items */
.blog-carousel-style .item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-carousel-style .blog-two__single {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.blog-carousel-style .blog-two__single:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-carousel-style .blog-two__img {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.blog-carousel-style .blog-two__img img {
    transition: transform 0.3s ease;
}

.blog-carousel-style .blog-two__single:hover .blog-two__img img {
    transform: scale(1.05);
}

.blog-carousel-style .blog-two__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.blog-carousel-style .blog-two__title {
    flex: 1;
    margin-bottom: 15px;
}

.blog-carousel-style .blog-two__title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: 2.8em;
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-carousel-style .blog-two__title a:hover {
    color: #e21111;
}

.blog-carousel-style .blog-two__text {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    min-height: 4.5em;
    margin-bottom: 0;
    color: #6c757d;
}

/* Responsive adjustments for blog carousel */
@media (max-width: 768px) {
    .blog-carousel-style .blog-two__content {
        padding: 20px;
    }
    
    .blog-carousel-style .blog-two__title a {
        -webkit-line-clamp: 2;
        min-height: 2.8em;
    }
    
    .blog-carousel-style .blog-two__text {
        -webkit-line-clamp: 2;
        min-height: 3em;
    }
}

@media (max-width: 576px) {
    .blog-carousel-style .blog-two__content {
        padding: 15px;
    }
    
    .blog-carousel-style .blog-two__title a {
        font-size: 16px;
        -webkit-line-clamp: 2;
        min-height: 2.8em;
    }
    
    .blog-carousel-style .blog-two__text {
        font-size: 14px;
        -webkit-line-clamp: 2;
        min-height: 3em;
    }
}
/*=============== File Page ===============*/
/*--------------------------------------------------------------
# File Page - Simple Blue Theme
--------------------------------------------------------------*/

/* File Page Container */
.file-page {
    padding: 60px 0;
    background: #fff;
}

/*--------------------------------------------------------------
# File Categories Sidebar
--------------------------------------------------------------*/
.file-grid__left {
    position: sticky;
    top: 20px;
}

.file-grid__sidebar {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.file-grid__sidebar:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.file-grid__single {
    padding: 0;
}

.file-grid__title-box {
    padding: 20px 25px;
    background: #50bfda;
    color: white;
    position: relative;
}

.file-grid__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    font-family: "Mitr", sans-serif;
    color: #fff;
}

/* Category List Styling */
.file-grid__list-item {
    padding: 15px 0;
    margin: 0;
}

.file-grid__list-item li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.file-grid__list-item li a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.file-grid__list-item li a:hover,
.file-grid__list-item li.active a {
    background: rgba(80, 191, 218, 0.1);
    color: #50bfda;
    border-left-color: #50bfda;
}

.file-grid__list-check {
    width: 8px;
    height: 8px;
    background: #50bfda;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.file-grid__list-item li a:hover .file-grid__list-check {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(80, 191, 218, 0.4);
}

.file-grid__list-text {
    font-size: 16px;
    margin: 0;
    flex-grow: 1;
}

/*--------------------------------------------------------------
# Search Section
--------------------------------------------------------------*/
.file-grid__search {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.file-grid__search:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.filter-file {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.filter-file input[type="search"] {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.filter-file input[type="search"]:focus {
    outline: none;
    border-color: #50bfda;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(80, 191, 218, 0.1);
}

.filter-file button {
    background: #50bfda;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-file button:hover {
    background: #3da8c4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(80, 191, 218, 0.3);
}

.filter-file button i {
    font-size: 16px;
}

/*--------------------------------------------------------------
# File Table Section
--------------------------------------------------------------*/
.file-grid__right {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

/* Table Header */
.file-list__right-table-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.file-list__right-top-text {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.file-list__showing-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.select-box {
    position: relative;
}

.select-box select {
    appearance: none;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 8px 35px 8px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.select-box select:focus {
    outline: none;
    border-color: #50bfda;
    box-shadow: 0 0 0 3px rgba(80, 191, 218, 0.1);
}

.select-box::after {
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #50bfda;
    pointer-events: none;
    font-size: 16px;
}

/* File Table */
.table-files {
    margin: 0;
    border: none;
}

.table-files thead th {
    background: #50bfda;
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-files tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.table-files tbody tr:hover {
    background: rgba(80, 191, 218, 0.05);
}

.table-files tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    border: none;
    font-size: 16px;
    color: #212529;
}

.table-files tbody td:first-child {
    color: #212529;
}

/* File Action Buttons */
.btn-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    margin: 0 2px;
}

.btn-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: #50bfda;
    color: white;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #3da8c4;
    color: white;
}

.btn-warning {
    background: #ffc107;
    color: white;
    border: none;
}

.btn-warning:hover,
.btn-warning:focus {
    background: #e0a800;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}

.btn-danger:hover,
.btn-danger:focus {
    background: #c82333;
    color: white;
}

.btn-login-require,
.btn-subscription-require {
    background: #6c757d !important;
    color: white !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-login-require:hover,
.btn-subscription-require:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #6c757d !important;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.sq-list__pagination {
    padding: 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.sq-list__pagination .pg-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sq-list__pagination .pg-pagination li {
    list-style: none;
}

.sq-list__pagination .pg-pagination li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    color: #212529;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sq-list__pagination .pg-pagination li a:hover,
.sq-list__pagination .pg-pagination li.active a {
    background: #50bfda;
    border-color: #50bfda;
    color: #fff;
}

.sq-list__pagination .pg-pagination li.next a,
.sq-list__pagination .pg-pagination li.last a {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.sq-list__pagination .pg-pagination li.next a i,
.sq-list__pagination .pg-pagination li.last a i {
    font-size: 14px;
}

/*.sq-list__pagination .pg-pagination li.first a,
.sq-list__pagination .pg-pagination li.prev a,
.sq-list__pagination .pg-pagination li.next a,
.sq-list__pagination .pg-pagination li.last a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: #50bfda;
    color: white;
}

.sq-list__pagination .pg-pagination li.first a:hover,
.sq-list__pagination .pg-pagination li.prev a:hover,
.sq-list__pagination .pg-pagination li.next a:hover,
.sq-list__pagination .pg-pagination li.last a:hover {
    background: #3da8c4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(80, 191, 218, 0.3);
}*/

/*--------------------------------------------------------------
# Mobile Category Dropdown
--------------------------------------------------------------*/
.mobile-category-dropdown {
    display: none;
    margin-bottom: 20px;
}

.mobile-category-dropdown select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #ffffff;
    font-size: 16px;
    font-weight: 500;
    color: #212529;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-category-dropdown select:focus {
    outline: none;
    border-color: #50bfda;
    box-shadow: 0 0 0 3px rgba(80, 191, 218, 0.1);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .file-grid__left {
        position: static;
        margin-bottom: 30px;
    }
    
    .file-grid__sidebar {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .file-page {
        padding: 40px 0;
    }
    
    /* Hide sidebar on mobile */
    .file-grid__left {
        display: none;
    }
    
    /* Show mobile dropdown */
    .mobile-category-dropdown {
        display: block;
    }
    
    .file-grid__title-box {
        padding: 15px 20px;
    }
    
    .file-grid__title {
        font-size: 16px;
    }
    
    .filter-file {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .filter-file input[type="search"] {
        width: 100%;
    }
    
    .filter-file button {
        width: 100%;
        justify-content: center;
    }
    
    .file-list__right-table-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 20px;
    }
    
    .table-responsive {
        font-size: 12px;
    }
    
    .table-files thead th,
    .table-files tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .btn-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .sq-list__pagination {
        padding: 20px 15px;
    }
    
    .sq-list__pagination .pg-pagination li a {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .sq-list__pagination .pg-pagination li.next a,
    .sq-list__pagination .pg-pagination li.last a {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .file-grid__title-box {
        padding: 12px 15px;
    }
    
    .file-grid__title {
        font-size: 15px;
    }
    
    .filter-file {
        padding: 12px;
    }
    
    .filter-file input[type="search"] {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .filter-file button {
        padding: 10px 16px;
        font-size: 16px;
    }
    
    .file-list__right-table-top {
        padding: 12px 15px;
    }
    
    .file-list__right-top-text {
        font-size: 16px;
    }
    
    .table-files thead th,
    .table-files tbody td {
        padding: 8px 5px;
        font-size: 11px;
    }
    
    .btn-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
        margin: 0 1px;
    }
    
    .sq-list__pagination {
        padding: 15px 10px;
    }
    
    .sq-list__pagination .pg-pagination {
        gap: 5px;
    }
    
    .sq-list__pagination .pg-pagination li a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .sq-list__pagination .pg-pagination li.next a,
    .sq-list__pagination .pg-pagination li.last a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}
/*--------------------------------------------------------------
# Download Page
--------------------------------------------------------------*/
/* Simple Download Page Styles */
.download-page {
    padding: 60px 0;
    background: #fff;
}

.download-page__container {
    max-width: 500px;
    margin: 0 auto;
}

.download-page__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.download-page__header {
    background: #50bfda;
    padding: 30px 25px;
    text-align: center;
}

.download-page__title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.download-page__content {
    padding: 30px 25px;
    text-align: center;
}

.download-page__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.download-page__icon img {
    width: 40px;
    height: 40px;
}

.download-page__filename {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 8px 0;
}

.download-page__filesize {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 25px 0;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid #e9ecef;
}

.download-page__expire {
    font-size: 14px;
    color: #6c757d;
    margin-top: 25px;
}

/* Button with special effects */
.download-page__btn {
    background: #50bfda;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.download-page__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.download-page__btn:hover::before {
    left: 100%;
}

.download-page__btn:hover {
    background: #3da8c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 191, 218, 0.3);
}

.download-page__btn:active {
    transform: translateY(0);
}

.download-page__btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.download-page__btn:hover i {
    transform: translateY(-1px);
}

.download-page__links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.download-page__link {
    display: inline-block;
    margin: 0 10px 8px;
    padding: 6px 12px;
    color: #50bfda;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-page__link:hover {
    background: rgba(80, 191, 218, 0.1);
    color: #3da8c4;
}

.download-page__stats {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.download-page__stats-text {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.download-page__stats-icon {
    color: #50bfda;
    font-size: 14px;
}

/* Button loading state */
.download-page__btn.loading {
    pointer-events: none;
}

.download-page__btn.loading i {
    animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .download-page {
        padding: 40px 0;
    }

    .download-page__container {
        margin: 0 20px;
    }

    .download-page__header {
        padding: 25px 20px;
    }

    .download-page__title {
        font-size: 20px;
    }

    .download-page__content {
        padding: 25px 20px;
    }

    .download-page__btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .download-page__header {
        padding: 20px 15px;
    }

    .download-page__title {
        font-size: 18px;
    }

    .download-page__content {
        padding: 20px 15px;
    }

    .download-page__btn {
        width: 100%;
        justify-content: center;
    }

    .download-page__links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .download-page__link {
        margin: 0;
        text-align: center;
    }
}
/*--------------------------------------------------------------
# Download Expire Page
--------------------------------------------------------------*/
/* Download Expire Page Styles */
.download-expire-page {
    padding: 60px 0;
    background: #fff;
}

.download-expire-page__container {
    max-width: 500px;
    margin: 0 auto;
}

.download-expire-page__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.download-expire-page__header {
    background: #50bfda;
    padding: 30px 25px;
    text-align: center;
}

.download-expire-page__title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.download-expire-page__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.download-expire-page__content {
    padding: 30px 25px;
    text-align: center;
}

.download-expire-page__icon {
    width: 80px;
    height: 80px;
    /*background: #dc3545;
    border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

/*.download-expire-page__icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #dc3545;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}*/

.download-expire-page__icon img {
    width: 40px;
    height: 40px;
}

.download-expire-page__message {
    font-size: 16px;
    color: #212529;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.download-expire-page__date {
    font-size: 14px;
    color: #dc3545;
    margin: 0 0 25px 0;
    padding: 8px 16px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(220, 53, 69, 0.2);
    font-weight: 500;
}

.download-expire-page__btn {
    background: #50bfda;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin: 0 10px 10px;
}

.download-expire-page__btn:hover {
    background: #3da8c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 191, 218, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.download-expire-page__btn:active {
    transform: translateY(0);
}

.download-expire-page__btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.download-expire-page__btn:hover i {
    transform: translateY(-1px);
}

.download-expire-page__btn--secondary {
    background: #6c757d;
}

.download-expire-page__btn--secondary:hover {
    background: #5a6268;
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}

.download-expire-page__info {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.download-expire-page__info-title {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 10px 0;
}

.download-expire-page__info-text {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-expire-page {
        padding: 40px 0;
    }

    .download-expire-page__container {
        margin: 0 20px;
    }

    .download-expire-page__header {
        padding: 25px 20px;
    }

    .download-expire-page__title {
        font-size: 20px;
    }

    .download-expire-page__content {
        padding: 25px 20px;
    }

    .download-expire-page__btn {
        padding: 10px 25px;
        font-size: 15px;
        margin: 0 5px 10px;
    }
}

@media (max-width: 576px) {
    .download-expire-page__header {
        padding: 20px 15px;
    }

    .download-expire-page__title {
        font-size: 18px;
    }

    .download-expire-page__content {
        padding: 20px 15px;
    }

    .download-expire-page__btn {
        width: 100%;
        justify-content: center;
        margin: 0 0 10px 0;
    }

    .download-expire-page__icon {
        width: 70px;
        height: 70px;
    }

    .download-expire-page__icon img {
        width: 35px;
        height: 35px;
    }
}