/* Body wrapper for consistent padding */
body {
    margin: 0;
    font-family: var(--font-family-primary);
}

/* Base Material Symbols styles to prevent stretching */
.material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
    display: inline-block;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, rgba(3, 96, 217, 0.2) 0%, rgba(237, 147, 12, 0.2) 100%);
    display: flex;
    align-items: center;
    padding: 130px 0 60px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid transparent;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    background: var(--gradient-blue-orange);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    margin-bottom: 24px;
}

.hero-content .badge::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    background: var(--gradient-blue-orange);
    border-radius: inherit;
    z-index: -1;
    padding: 1.5px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
}

.hero-content h1 .highlight {
    color: var(--primary-blue);
    display: block;
}

.hero-content .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

.btn-download {
    background-color: #000000;
    color: #ffffff !important;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-family-primary);
}

.btn-download .material-symbols-outlined {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background-color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-download:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-explore {
    background: white;
    color: #000 !important;
    border: 1px solid #000;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download:hover, .btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phone-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    position: relative;
    margin-top: 40px;
}

.phone {
    position: relative;
    transition: all 0.3s ease;
}

.phone img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.phone-left, .phone-right {
    width: 38.4%;
    /* margin-bottom: 40px; */
}

.phone-center {
    width: 60%;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }
    
    .phone-showcase {
        gap: 15px;
    }
    
    .phone-left, .phone-right {
        width: 38.4%;
        margin-bottom: 20px;
    }
    
    .phone-center {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 33px;
    }
    
    .hero-section {
        padding: 134px 0 60px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    /* Keep buttons same size as desktop */
    .btn-download, .btn-explore {
        padding: 12px 24px;
        font-size: 14px;
        width: auto;
        max-width: 300px;
    }
    
    .phone-showcase {
        gap: 10px;
    }
    
    .phone-left, .phone-right {
        width: 38.4%;
        margin-bottom: 15px;
    }
    
    .phone-center {
        width: 60%;
    }
}

@media (max-width: 480px) {
    .phone-showcase {
        gap: 8px;
    }
    
    .phone-left, .phone-right {
        width: 38.4%;
        margin-bottom: 10px;
    }
    
    .phone-center {
        width: 60%;
    }
}

/* Statistics Section */
.statistics-section {
    padding: 60px 0;
    background: transparent;
}

.statistics-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #fff3e0 100%);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    /* margin: 0 auto; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #0360d9;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: #e0e0e0;
    margin: 0 20px;
}

/* Responsive adjustments for statistics section */
@media (max-width: 768px) {
    .statistics-section {
        padding: 40px 20px;
    }
    
    .statistics-card {
        padding: 30px 20px;
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .statistics-card {
        padding: 25px 15px;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

/* Why Invisible Section */
.why-invisible-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 60px;
    color: #000000;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--primary-blue);
}

.reason-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 0 60px;
}

.reason-card {
    background: #f0f7ff;
    border: 1px solid #e0e0e0;
    border-radius: 50px 16px 16px 16px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-icon .material-symbols-outlined {
    font-size: 40px;
    color: var(--primary-blue);
    font-weight: 400;
}

.reason-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.reason-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.scroll-to-solution {
    text-align: center;
}

.scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 30px;
    background: transparent;
}

.scroll-link:hover {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.scroll-link .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.scroll-link:hover .material-symbols-outlined {
    transform: translateY(2px);
}

/* Responsive adjustments for why invisible section */
@media (max-width: 992px) {
    .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .reason-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }
    
    .reason-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .card-icon .material-symbols-outlined {
        font-size: 24px;
    }
    
    .reason-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .reason-card p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .why-invisible-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .reason-cards {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .reason-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .card-icon .material-symbols-outlined {
        font-size: 20px;
    }
    
    .reason-card h3 {
        font-size: 16px;
    }
    
    .reason-card p {
        font-size: 14px;
    }
    
    .scroll-link {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .scroll-link .material-symbols-outlined {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .why-invisible-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .reason-cards {
        margin-bottom: 30px;
    }
    
    .reason-card {
        padding: 18px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon .material-symbols-outlined {
        font-size: 18px;
    }
    
    .reason-card h3 {
        font-size: 15px;
    }
    
    .reason-card p {
        font-size: 13px;
    }
}

/* Floating Download Button for Mobile */
.floating-download-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family-primary);
}

.floating-download-btn .material-symbols-outlined {
    font-size: 16px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-download-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Show floating button only on mobile */
@media (max-width: 768px) {
    .floating-download-btn {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

/* How DigiDr Works Section */
.how-digidoctor-works-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8fbff 0%, #fff9f0 100%); */
    background: var(--background-primary);
}

.works-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.doctor-image-container {
    flex: 0 0 45%;
    position: relative;
}

.doctor-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
}

/* .doctor-image:hover {
    transform: translateY(-5px);
} */

.pills-container {
    flex: 1;
    max-width: 55%;
}

.pills-container .section-title {
    margin-bottom: 40px;
    text-align: left;
}

.pill-menu {
    background: #ffffff;
    border-radius: 50px;
    padding: 20px;
    margin-bottom: 20px;
    /* border: 1px solid transparent; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 0;
    background-clip: padding-box;
}

.pill-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 1.5px;
    background: var(--gradient-blue-orange);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 0;
}

.pill-menu > * {
    position: relative;
    z-index: 1;
}

.pill-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pill-menu.active {
    background: linear-gradient(135deg, #eaf5fd 0%, #fef8ed 100%);
    border-color: var(--primary-blue);
}

.pill-header {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.pill-icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pill-icon .material-symbols-outlined {
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
}

.pill-text {
    flex: 1;
    text-align: left;
}

.pill-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.pill-text p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

.pill-chevron {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
    margin-left: auto;
    align-self: center;
}

.pill-chevron .material-symbols-outlined {
    font-size: 24px;
    color: #999999;
    font-weight: 400;
}

.pill-menu.active .pill-chevron {
    transform: rotate(180deg);
}

.pill-content {
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease, margin-top 0.3s ease, border-color 0.3s ease;
}

.pill-menu.active .pill-content {
    max-height: 300px;
    opacity: 1;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid #e0e0e0;
    overflow-y: auto;
}

.pill-menu.active .pill-content {
    animation: slideDown 0.4s ease forwards;
}

.pill-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 12px 0;
    padding-left: 66px;
}

.pill-content ul {
    margin: 0;
    padding-left: 66px;
    list-style: none;
}

.pill-content li {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.pill-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 16px;
}

.pill-content::-webkit-scrollbar {
    width: 6px;
}

.pill-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pill-content::-webkit-scrollbar-thumb {
    background: var(--gradient-blue-orange);
    border-radius: 10px;
}

.pill-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for How DigiDr Works section */
@media (max-width: 992px) {
    .how-digidoctor-works-section {
        padding: 60px 0;
    }
    
    .works-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .doctor-image-container {
        flex: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pills-container {
        flex: 1;
        max-width: 100%;
    }
    
    .pills-container .section-title {
        text-align: center;
    }
    
    .pill-menu {
        padding: 20px;
    }
    
    .pill-icon {
        width: 50px;
        height: 50px;
    }
    
    .pill-icon .material-symbols-outlined {
        font-size: 24px;
    }
    
    .pill-text h4 {
        font-size: 18px;
    }
    
    .pill-text p {
        font-size: 14px;
    }
    
    .pill-content p {
        padding-left: 0;
        text-align: left;
    }
    
    .pill-content ul {
        padding-left: 0;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .how-digidoctor-works-section {
        padding: 40px 20px;
    }
    
    .works-content {
        gap: 30px;
    }
    
    .doctor-image-container {
        max-width: 300px;
    }
    
    .pills-container .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .pill-menu {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .pill-header {
        gap: 16px;
        flex-direction: row;
        text-align: left;
    }
    
    .pill-icon {
        width: 50px;
        height: 50px;
    }
    
    .pill-icon .material-symbols-outlined {
        font-size: 24px;
    }
    
    .pill-text h4 {
        font-size: 18px;
    }
    
    .pill-text p {
        font-size: 14px;
    }
    
    .pill-chevron .material-symbols-outlined {
        font-size: 24px;
    }
    
    .pill-content p {
        font-size: 14px;
        padding-left: 66px;
        text-align: left;
    }
    
    .pill-content ul {
        padding-left: 66px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .how-digidoctor-works-section {
        padding: 30px 15px;
    }
    
    .works-content {
        gap: 20px;
    }
    
    .doctor-image-container {
        max-width: 250px;
    }
    
    .pills-container .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .pill-menu {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .pill-header {
        gap: 12px;
        flex-direction: row;
        text-align: left;
    }
    
    .pill-icon {
        width: 45px;
        height: 45px;
    }
    
    .pill-icon .material-symbols-outlined {
        font-size: 20px;
    }
    
    .pill-text h4 {
        font-size: 16px;
    }
    
    .pill-text p {
        font-size: 13px;
    }
    
    .pill-chevron {
        position: static;
    }
    
    .pill-chevron .material-symbols-outlined {
        font-size: 20px;
    }
    
    .pill-content p {
        font-size: 13px;
        padding-left: 56px;
        text-align: left;
    }
    
    .pill-content ul {
        padding-left: 56px;
        text-align: left;
    }
    
.pill-menu {
padding: 20px;
margin-bottom: 20px;
}
    
.pill-header {
gap: 16px;
flex-direction: row;
text-align: left;
}
    
.pill-icon {
width: 50px;
height: 50px;
}
    
.pill-icon .material-symbols-outlined {
font-size: 24px;
}
    
.pill-text h4 {
font-size: 18px;
}
    
.pill-text p {
font-size: 14px;
}
    
.pill-chevron .material-symbols-outlined {
font-size: 24px;
}
    
.pill-content p {
font-size: 14px;
padding-left: 66px;
text-align: left;
}
    
.pill-content ul {
padding-left: 66px;
text-align: left;
}
}

@media (max-width: 480px) {
.how-digidoctor-works-section {
padding: 30px 15px;
}
    
.works-content {
gap: 20px;
}
    
.doctor-image-container {
max-width: 250px;
}
    
.pills-container .section-title {
font-size: 28px;
margin-bottom: 25px;
}
    
.pill-menu {
padding: 16px;
margin-bottom: 16px;
}
    
.pill-header {
gap: 12px;
flex-direction: row;
text-align: left;
}
    
.pill-icon {
width: 45px;
height: 45px;
}
    
.pill-icon .material-symbols-outlined {
font-size: 20px;
}
    
.pill-text h4 {
font-size: 16px;
}
    
.pill-text p {
font-size: 13px;
}
    
.pill-chevron {
position: static;
}
    
.pill-chevron .material-symbols-outlined {
font-size: 20px;
}
    
.pill-content p {
font-size: 13px;
padding-left: 56px;
text-align: left;
}
    
.pill-content ul {
padding-left: 56px;
text-align: left;
}
    
.pill-content li {
font-size: 13px;
}
}

/* Posts Carousel Section */
.posts-carousel-section {
/*padding: 140px 0;*/
padding-top: 80px;
background: white;
position: relative;
overflow: hidden;
}

.carousel-header {
text-align: center;
margin-bottom: 60px;
position: relative;
z-index: 1;
}

.carousel-header .section-title {
font-size: 40px;
font-weight: 700;
margin-bottom: 16px;
color: #000000;
line-height: 1.2;
text-align: center;
}

.carousel-header .section-subtitle {
font-size: 18px;
color: #666666;
line-height: 1.6;
margin: 0;
}

.posts-carousel-container {
position: relative;
width: 100vw;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
padding: 40px 0 0px;
background: linear-gradient(180deg, rgba(0, 119, 255, 0) 0%, rgba(0, 119, 255, 0.2) 70%, rgba(255, 165, 0, 0.4) 100%);
}

.posts-carousel-wrapper {
position: relative;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.posts-carousel {
display: flex;
gap: 50px;
padding: 20px 0;
overflow-x: auto;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
scrollbar-width: none; /* Hide scrollbar for Firefox */
-ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
position: relative;
z-index: 1;
width: 100%;
margin: 0 auto;
}

.posts-carousel::-webkit-scrollbar {
display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.post-item {
    flex: 0 0 auto;
    cursor: default;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.post-item img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;
}

/* Responsive adjustments for Posts Carousel section */
@media (max-width: 992px) {
    .posts-carousel-section {
        padding: 60px 0;
    }
    
    .carousel-header .section-title {
        font-size: 40px;
        margin-bottom: 14px;
    }
    
    .carousel-header .section-subtitle {
        font-size: 16px;
    }
    
    .post-item img {
        width: 250px;
        height: 333px;
    }
    
    .posts-carousel {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .posts-carousel-section {
        padding: 40px 20px;
    }
    
    .carousel-header {
        margin-bottom: 40px;
    }
    
    .carousel-header .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .carousel-header .section-subtitle {
        font-size: 15px;
    }
    
    .post-item img {
        width: 200px;
        height: 267px;
    }
    
    .posts-carousel {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .posts-carousel-section {
        padding: 30px 15px;
    }
    
    .carousel-header {
        margin-bottom: 30px;
    }
    
    .carousel-header .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .carousel-header .section-subtitle {
        font-size: 14px;
    }
    
    .post-item img {
        width: 160px;
        height: 213px;
    }
    
    .posts-carousel {
        gap: 12px;
    }
}

/* Why Healthcare Professionals Love DigiDr Section */
.why-love-digidoctor-section {
    padding: 80px 0;
    background: white;
}

.why-love-digidoctor-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-love-digidoctor-section .section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000;
    line-height: 1.2;
    text-align: center;
}

.why-love-digidoctor-section .section-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.love-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.love-card {
    background: #f0f7ff;
    border: 1.5px solid transparent;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-clip: padding-box;
}

.love-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 1.5px;
    background: var(--gradient-blue-orange);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: 0;
}

.love-card > * {
    position: relative;
    z-index: 1;
}

.love-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.love-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.love-card:hover .love-card-icon {
    transform: scale(1.1);
}

.love-card-icon .material-symbols-outlined {
    font-size: 30px;
    color: #ffffff;
    font-weight: 400;
}

.love-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.4;
}

.love-card-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for Why Love DigiDr section */
@media (max-width: 992px) {
    .why-love-digidoctor-section {
        padding: 60px 0;
    }
    
    .why-love-digidoctor-section .section-title {
        font-size: 40px;
        margin-bottom: 14px;
    }
    
    .why-love-digidoctor-section .section-subtitle {
        font-size: 16px;
    }
    
    .love-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    .love-card {
        padding: 25px;
    }
    
    .love-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .love-card-icon .material-symbols-outlined {
        font-size: 24px;
    }
    
    .love-card-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .love-card-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .why-love-digidoctor-section {
        padding: 40px 20px;
    }
    
    .why-love-digidoctor-section .section-header {
        margin-bottom: 40px;
    }
    
    .why-love-digidoctor-section .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .why-love-digidoctor-section .section-subtitle {
        font-size: 15px;
    }
    
    .love-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    
    .love-card {
        padding: 20px;
    }
    
    .love-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .love-card-icon .material-symbols-outlined {
        font-size: 20px;
    }
    
    .love-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .love-card-description {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .why-love-digidoctor-section {
        padding: 30px 15px;
    }
    
    .why-love-digidoctor-section .section-header {
        margin-bottom: 30px;
    }
    
    .why-love-digidoctor-section .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .why-love-digidoctor-section .section-subtitle {
        font-size: 14px;
    }
    
    .love-card {
        padding: 18px;
    }
    
    .love-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .love-card-icon .material-symbols-outlined {
        font-size: 18px;
    }
    
.love-card-description {
font-size: 13px;
}
}

@media (max-width: 768px) {
.why-love-digidoctor-section {
padding: 40px 20px;
}
    
.why-love-digidoctor-section .section-header {
margin-bottom: 40px;
}
    
.why-love-digidoctor-section .section-title {
font-size: 32px;
margin-bottom: 12px;
}
    
.why-love-digidoctor-section .section-subtitle {
font-size: 15px;
}
    
.love-cards-grid {
grid-template-columns: 1fr;
gap: 20px;
padding: 0;
}
    
.love-card {
padding: 20px;
}
    
.love-card-icon {
width: 45px;
height: 45px;
margin-bottom: 12px;
}
    
.love-card-icon .material-symbols-outlined {
font-size: 20px;
}
    
.love-card-title {
font-size: 15px;
margin-bottom: 8px;
}
    
.love-card-description {
font-size: 12px;
}
}

@media (max-width: 480px) {
.why-love-digidoctor-section {
padding: 30px 15px;
}
    
.why-love-digidoctor-section .section-header {
margin-bottom: 30px;
}
    
.why-love-digidoctor-section .section-title {
font-size: 28px;
margin-bottom: 10px;
}
    
.why-love-digidoctor-section .section-subtitle {
font-size: 14px;
}
    
.love-card {
padding: 18px;
}
    
.love-card-icon {
width: 40px;
height: 40px;
margin-bottom: 10px;
}
    
.love-card-icon .material-symbols-outlined {
font-size: 18px;
}
    
.love-card-title {
font-size: 14px;
margin-bottom: 6px;
}
    
.love-card-description {
font-size: 11px;
}
}

/* Testimonials Section */
.testimonials-section {
padding: 80px 0;
background: white;
position: relative;
overflow: hidden;
}

.testimonials-section .section-header {
text-align: center;
margin-bottom: 60px;
}

.testimonials-section .section-title {
font-size: 40px;
font-weight: 700;
margin-bottom: 16px;
color: #000000;
line-height: 1.2;
text-align: center;
}

.testimonials-section .section-subtitle {
font-size: 18px;
color: #666666;
line-height: 1.6;
margin: 0;
text-align: center;
}

.testimonials-carousel-container {
position: relative;
width: 100vw;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
padding: 40px 0 0px;
background: linear-gradient(180deg, rgba(0, 119, 255, 0) 0%, rgba(0, 119, 255, 0.15) 70%, rgba(255, 165, 0, 0.3) 100%);
}

.testimonials-carousel-wrapper {
position: relative;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}

.testimonials-carousel {
display: flex;
gap: 24px;
padding: 20px 0;
overflow-x: auto;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
scrollbar-width: none; /* Hide scrollbar for Firefox */
-ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
position: relative;
z-index: 1;
width: 100%;
margin: 0 auto;
}

.testimonials-carousel::-webkit-scrollbar {
display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.testimonial-card {
flex: 0 0 auto;
width: 320px;
background: white;
border-radius: 20px;
padding: 28px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
cursor: default;
user-select: none;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: 1px solid rgba(0, 119, 255, 0.08);
}

.testimonial-card:hover {
transform: translateY(-8px);
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
border-color: rgba(0, 119, 255, 0.15);
}

.doctor-profile {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 16px;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-doctor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card .doctor-image {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin: 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 3px solid white;
}

.testimonial-card .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.doctor-info {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
}

.doctor-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.doctor-specialty {
    font-size: 14px;
    color: #0077FF;
    margin: 0 0 3px 0;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.doctor-hospital {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
}

.rating {
display: flex;
justify-content: center;
gap: 3px;
margin: 20px 0;
}

.rating .star {
    color: #FFA500;
    font-size: 20px;
    filter: drop-shadow(0 1px 2px rgba(255, 165, 0, 0.3));
    font-variation-settings: 'FILL' 1;
}

.review-text {
font-size: 15px;
line-height: 1.7;
color: #2c3e50;
text-align: center;
font-style: italic;
margin: 0;
font-weight: 400;
position: relative;
padding: 0 8px;
}

/* Responsive adjustments for Testimonials section */
@media (max-width: 992px) {
.testimonials-section {
padding: 60px 0;
}
    
.testimonials-section .section-title {
font-size: 40px;
margin-bottom: 14px;
}
    
.testimonials-section .section-subtitle {
font-size: 16px;
}
    
.testimonial-card {
width: 280px;
padding: 20px;
}
    
.testimonials-carousel {
gap: 20px;
}
}

@media (max-width: 768px) {
.testimonials-section {
padding: 40px 20px;
}
    
.testimonials-section .section-header {
margin-bottom: 40px;
}
    
.testimonials-section .section-title {
font-size: 32px;
margin-bottom: 12px;
}
    
.testimonials-section .section-subtitle {
font-size: 15px;
}
    
.testimonial-card {
width: 240px;
padding: 18px;
}
    
.testimonial-doctor-image {
width: 70px;
height: 70px;
}
    
.doctor-name {
font-size: 16px;
}
    
.doctor-specialty {
font-size: 13px;
}
    
.doctor-hospital {
font-size: 12px;
}
    
.testimonials-carousel {
gap: 16px;
}
    
.testimonial-card .doctor-image {
    width: 70px !important;
    height: 70px !important;
}
}

@media (max-width: 480px) {
.testimonials-section {
padding: 30px 15px;
}
    
.testimonials-section .section-header {
margin-bottom: 30px;
}
    
.testimonials-section .section-title {
font-size: 28px;
margin-bottom: 10px;
}
    
.testimonials-section .section-subtitle {
font-size: 14px;
}
    
.testimonial-card {
width: 200px;
padding: 16px;
}
    
.testimonial-doctor-image {
width: 60px;
height: 60px;
}
    
.doctor-name {
font-size: 15px;
}
    
.doctor-specialty {
font-size: 12px;
}
    
.doctor-hospital {
font-size: 11px;
}
    
.review-text {
font-size: 13px;
}
    
.testimonials-carousel {
gap: 14px;
}
}

.pricing-section {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-section .section-title {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #000000;
    line-height: 1.2;
}

.pricing-section .text-highlight-blue {
    color: var(--primary-blue);
}

.pricing-section .section-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Go Digital Today Section */
.go-digital-section {
    padding: 80px 0;
    background: var(--background-primary);
}

.go-digital-header {
    margin-bottom: 32px;
}

.go-digital-title {
    font-weight: 700;
    font-size: 40px;
    text-align: left;
    margin: 0;
    color: #000000;
    line-height: 1.2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.go-digital-title .text-highlight-blue {
    color: var(--primary-blue);
}

.go-digital-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
    background-clip: padding-box;
    max-width: 1000px;
    margin: 0 auto;
}

.go-digital-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: var(--gradient-blue-orange);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.go-digital-form {
    padding: 48px 32px 32px;
    position: relative;
    z-index: 1;
}

.go-digital-field {
    margin-bottom: 28px;
}

.go-digital-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.go-digital-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    border-radius: 0;
    padding: 6px 0 10px;
    font-size: 14px;
    color: #000000;
    outline: none;
    background: transparent;
}

.go-digital-input:focus {
    border-bottom-color: var(--primary-blue);
}

.go-digital-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.go-digital-btn {
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: var(--font-family-primary);
}

.go-digital-btn .material-symbols-outlined {
    font-size: 18px;
}

.go-digital-btn-primary {
    background: #000000;
    color: #ffffff;
}

.go-digital-btn-primary:hover {
    background: #333333;
    transform: translateY(-1px);
}

.go-digital-btn-outline {
    background: #ffffff;
    border-color: #d2d2d2;
    color: #000000;
}

.go-digital-btn-outline:hover {
    border-color: #000000;
    transform: translateY(-1px);
}

.go-digital-image {
    position: absolute;
    right: 100px;
    top: -92px;
    height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.go-digital-image img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 26px;
    margin-bottom: 50px;
}

.pricing-toggle-wrapper {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    border: 0.5px solid rgb(230, 229, 229);
}

.toggle-btn {
    border: none;
    background: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666666;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.toggle-btn.active {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.yearly-badge {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    background-color: rgba(255, 166, 0, 0.15);
    color: #d0901a;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
    margin-left: 0;
    margin-top: 2px;
}

.pricing-card {
    border: none;
    border-radius: 24px;
    background-color: var(--background-primary);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    border: 0.5px solid rgb(203, 202, 202);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.price-tag {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 0px;
    color: #111827;
}

.price-currency {
    font-size: 40px;
}

.price-period {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    margin-left: 6px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000000;
}

.plan-subtitle {
    color: #666666;
    font-size: 13px;
    margin-bottom: 26px;
    display: block;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
}

.features-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
}

.check-icon {
    min-width: 18px;
    width: 18px;
    height: 18px;
    background-color: rgba(14, 101, 215, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
}

.check-icon::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    transform: rotate(-45deg);
    position: absolute;
    top: 6px;
}

.btn-dark-custom {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    border: none;
}

.btn-dark-custom:hover {
    background-color: #333333;
    color: #ffffff;
}

.pricing-card.highlighted {
    background: #ffffff;
    border: 1.5px solid transparent;
    border-radius: 24px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    background-clip: padding-box;
}

.pricing-card.highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: var(--gradient-blue-orange);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

@media (min-width: 992px) {
    .pricing-card-wrapper-highlighted {
        transform: scale(1.08);
        z-index: 20;
    }
    
    .col-lg-4:not(.pricing-card-wrapper-highlighted) {
        z-index: 1;
    }
}

.doctors-choice-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #333333;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    z-index: 10;
}

.doctors-choice-badge:hover {
    transform: translateY(-1px);
}

.mt-40 { margin-top: 40px; }

@media (max-width: 992px) {
.pricing-section {
padding: 60px 0;
}

.pricing-section .section-title {
font-size: 40px;
}

.pricing-section .section-subtitle {
font-size: 16px;
}

.pricing-toggle-container {
margin-bottom: 40px;
}
}

@media (max-width: 990px) {
.go-digital-card .row {
flex-direction: column;
}

.go-digital-form {
padding: 36px 28px 24px;
}

.go-digital-image {
position: relative;
right: auto;
top: auto;
height: auto;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
min-height: 200px;
}

.go-digital-image img {
max-width: 180px;
}
}

@media (max-width: 768px) {
.pricing-section {
padding: 40px 20px;
}

    .pricing-section .section-title {
        font-size: 32px;
    }

    .pricing-section .section-subtitle {
        font-size: 15px;
    }

    .go-digital-section {
        padding: 40px 20px;
    }

    .go-digital-title {
        font-size: 32px;
    }

    .go-digital-card .row {
        flex-direction: column;
    }

    .go-digital-form {
        padding: 36px 28px 24px;
    }

    .go-digital-image {
        position: relative;
        right: auto;
        top: auto;
        height: auto;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px;
    }

    .go-digital-image img {
        max-width: 180px;
    }

    .yearly-badge {
        /* right: -18px; */
        font-size: 10px;
        padding: 4px 8px;
    }

    .pricing-card {
        padding: 34px 26px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 30px 15px;
    }

    .pricing-section .section-title {
        font-size: 28px;
    }

    .go-digital-section {
        padding: 30px 15px;
    }

    .go-digital-title {
        font-size: 28px;
    }

    .go-digital-actions {
        gap: 10px;
    }

    .go-digital-image {
        position: relative;
        right: auto;
        top: auto;
        height: auto;
        order: 2;
        padding: 15px;
        display: flex;
        justify-content: center;
    }

    .go-digital-btn {
        width: 100%;
    }

    .pricing-card {
        padding: 30px 22px;
    }

    .price-tag,
    .price-currency {
        font-size: 36px;
    }
}