/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'haskoy', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER STYLES - With Blue Background */
.site-header {
    background: #00273d;
    padding: 15px 40px;
    position: relative;
    z-index: 100;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper img {
    height: 100px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    margin-left: 10px;
    color: #e4b118;
    letter-spacing: 1px;
}

/* Navigation and CTA wrapper */
.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation li a {
    font-family: 'haskoy', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    padding-bottom: 5px;
    position: relative;
    text-transform: uppercase;
}

.main-navigation li a:hover {
    color: #e4b118;
}

.main-navigation li a.active {
    color: #e4b118;
}

.main-navigation li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #e4b118;
}

/* Using original yellow CTA button */
.header-cta-button {
    display: inline-block;
    background-color: #e4b118;
    color: #00273d !important;
    font-family: 'haskoy', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 16px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 177, 24, 0.3);
    white-space: nowrap;
}

.header-cta-button:hover {
    background-color: #d4a115;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 177, 24, 0.4);
    text-decoration: none;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    position: absolute;
    right: 25px;
    top: 40px;
    z-index: 200;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* END OF HEADER STYLES */

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: #f8f9fa;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e4b118;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00273d;
    margin-bottom: 20px;
    text-align: center;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e4b118;
    margin: 20px auto;
}

.subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background: #e4b118;
    color: #00273d;
    padding: 22px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 177, 24, 0.3);
}

.cta-button:hover {
    background: #d4a115;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 177, 24, 0.4);
}

/* Mission Section */
.mission-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    text-align: center;
    color: white;
    z-index: 0;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.mission-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-title {
    font-size: 4rem;
    font-weight: 800;
    color: #00273d;
    margin: 0;
    line-height: 1.3;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

/* Tutors Section */
.tutors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 50px auto 0;
}

.tutor-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.tutor-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    margin-bottom: 20px;
    border: 4px solid #e4b118;
}

.tutor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00273d;
    margin-bottom: 10px;
}

.tutor-title {
    color: #e4b118;
    font-weight: 600;
    font-size: 1rem;
}

.tutor-degree {
    color: #666;
    font-size: 0.95rem;
    margin-top: 10px;
}

.click-learn-more {
    color: #e4b118;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    margin: 0 auto 20px;
    border: 4px solid #e4b118;
}

.modal-content h2 {
    color: #00273d;
    margin-bottom: 10px;
    font-size: 2rem;
}

.modal-content h3 {
    color: #e4b118;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-bio {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.close {
    color: #999;
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #00273d;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    padding: 35px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e4b118;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #00273d;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Subjects Section */
.subjects-box {
    background: white;
    border: 3px solid #00273d;
    border-radius: 12px;
    padding: 50px;
    max-width: 900px;
    margin: 50px auto 0;
}

.subjects-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00273d;
    text-align: center;
    margin-bottom: 30px;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.subject-list {
    list-style: none;
}

.subject-list li {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.subject-list li:last-child {
    border-bottom: none;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 60px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    /* Removed fixed height to allow for dynamic sizing */
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    /* Changed from absolute to relative positioning */
    position: relative;
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    pointer-events: auto;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #e4b118;
    color: #00273d;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-button:hover {
    background: #d4a115;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #bbb;
}

.dot.active {
    background: #e4b118;
    width: 14px;
    height: 14px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e4b118;
}

.testimonial-subject {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00273d;
    margin-bottom: 10px;
}

.stars {
    color: #e4b118;
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

.highlight {
    color: #e4b118;
    font-weight: 600;
}

.testimonial-author {
    font-weight: 700;
    color: #00273d;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 20px;
}

.testimonial-role {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 5px;
}

/* Services Page Styles */
.services-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.service-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #e4b118;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #00273d;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-price {
    color: #e4b118;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.packages-list {
    margin-top: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e4b118;
}

.packages-list h4 {
    color: #00273d;
    font-size: 1.15rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-item {
    padding: 15px 0;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-item:last-child {
    border-bottom: none;
}

.package-name {
    color: #00273d;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.package-details {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.package-price {
    color: #e4b118;
    font-weight: 800;
    font-size: 1.3rem;
    white-space: nowrap;
    margin-left: 20px;
}

.cta-container {
    text-align: center;
    margin-top: 50px;
}

/* Team Page Styles */
.team-detailed-grid {
    display: grid;
    gap: 60px;
    margin-top: 50px;
}

.team-member {
    display: flex;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
}

.team-image {
    width: 300px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center 20%;
    border: 4px solid #e4b118;
    flex-shrink: 0;
}

.team-info {
    padding: 10px 0;
}

.team-name {
    font-size: 2rem;
    color: #00273d;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-title {
    color: #e4b118;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-bio {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Testimonials Page Styles */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-full-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00273d 0%, #00273d 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section h2::after {
    background: #e4b118;
}

.cta-tagline {
    font-size: 1.2rem;
    color: #e4b118;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background: #00273d;
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #e4b118;
    margin-bottom: 20px;
}

.footer-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-image {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.contact-info {
    margin: 30px 0;
}

.contact-item {
    color: #e0e0e0;
    text-decoration: none;
    display: inline-block;
    margin: 10px 20px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #e4b118;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.social-icon {
    color: #e0e0e0;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #e4b118;
    background: rgba(228, 177, 24, 0.15);
    transform: translateY(-3px);
}

/* Promotional Modal Styles */
#promoModal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#promoModal.visible {
    opacity: 1;
}

.promo-content {
    background: linear-gradient(135deg, #00273d 0%, #00376d 100%);
    color: white;
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 3px solid #e4b118;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

#promoModal.visible .promo-content {
    transform: scale(1);
}

.promo-title {
    font-size: 2rem;
    color: #e4b118;
    margin-bottom: 10px;
    font-weight: 700;
}

.promo-icon {
    font-size: 3rem;
    color: #e4b118;
    margin-bottom: 20px;
    display: block;
}

.promo-message {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
}

.promo-cta {
    display: inline-block;
    background: #e4b118;
    color: #00273d;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.promo-cta:hover {
    background: #f5c228;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 177, 24, 0.4);
}

.close-promo {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-promo:hover {
    color: #e4b118;
}

.promo-footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.dont-show-again {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.dont-show-again input {
    margin-right: 10px;
}

/* Menu Overlay when menu is open */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

.menu-overlay.active {
    display: block;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {

    /* Ensure header container remains row-oriented */
    .header-container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }

    /* Show hamburger menu at this breakpoint */
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Hide the navigation when not active */
    .nav-cta-wrapper {
        position: fixed;
        right: -330px;
        top: 0;
        height: 100%;
        width: 330px;
        background-color: #00273d;
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-cta-wrapper.open {
        right: 0;
    }

    /* Style menu items in a column */
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .main-navigation ul li {
        width: 100%;
        margin-bottom: 15px;
    }

    .main-navigation ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }

    /* Style the CTA button to fit the slide-out menu */
    .cta-button-container {
        margin-top: 30px;
        width: 100%;
    }

    .header-cta-button {
        display: block;
        text-align: center;
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    /* Dark Overlay when menu is open */
    .menu-overlay.active {
        display: block;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Additional mobile-specific adjustments */
@media (max-width: 768px) {

    /* Mobile typography adjustments */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .mission-title {
        font-size: 2rem;
    }

    /* Section spacing */
    section {
        padding: 50px 20px;
    }

    .mission-section {
        padding: 80px 20px;
    }

    .subjects-box {
        padding: 30px 20px;
    }

    /* Carousel Responsive */
    .testimonials-carousel {
        padding: 0 40px;
    }

    .carousel-container {
        min-height: 500px;
    }

    .carousel-button {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Modal Responsive */
    .modal-content {
        margin: 10% 20px;
        padding: 30px 20px;
    }

    .modal-image {
        width: 150px;
        height: 150px;
    }

    /* Team Page Responsive */
    .team-member {
        flex-direction: column;
        align-items: center;
    }

    .team-image {
        width: 100%;
        height: auto;
        max-width: 300px;
    }

    /* Services & Testimonials Grid Responsive */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-full-grid {
        grid-template-columns: 1fr;
    }

    /* Promo Modal Responsive */
    .promo-content {
        margin: 20% auto;
        padding: 30px 20px;
        max-width: 90%;
    }

    .promo-title {
        font-size: 1.6rem;
    }

    .promo-message {
        font-size: 1.2rem;
    }
}

/* Countdown Banner Styles */
.countdown-banner {
    background: linear-gradient(135deg, #e4b118 0%, #d4a017 100%);
    color: #00273d;
    padding: 12px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(228, 177, 24, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(228, 177, 24, 0.6);
    }
}

.countdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.countdown-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.countdown-text i {
    color: #ff4444;
    animation: flicker 1.5s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.countdown-timer {
    font-size: 18px;
    font-weight: 800;
    background: #00273d;
    color: #e4b118;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1.5px;
}

/* Responsive countdown banner */
@media (max-width: 768px) {
    .countdown-banner {
        padding: 10px 15px;
    }

    .countdown-text {
        font-size: 12px;
    }

    .countdown-timer {
        font-size: 14px;
        padding: 4px 12px;
    }

    .countdown-content {
        gap: 10px;
    }
}

/* Sale Price Styles */
.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}

.price-sale {
    color: #e4b118;
    font-weight: 700;
    font-size: 1.1em;
}