/* CSS Variables */
:root {
    --primary-pink: #e91e63;
    --primary-purple: #9c27b0;
    --primary-gradient: linear-gradient(90deg, #FFAA6F 0%, #F04988 15%, #8A64D4 45%, #4790CC 75%, #56BCAC 90%);
    --secondary-gradient: linear-gradient(145deg, #e91e63 0%, #9c27b0 50%, #4a90e2 100%);
    --footer-gradient: linear-gradient(130deg, #3DA7D9 0%, #8A5FD4 50%, #D74FA2 100%);
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --black: #212529;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-light: #adb5bd;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;

    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-xl: 0 1.25rem 4rem rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;

    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Warning Bar */
.warning-bar {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1100;
}

/* Modern Navigation */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    top: 40px;
    transition: var(--transition);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    top: 39px;
}

.brand-logo {
    height: 65px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-buttons .btn {
    margin: 0 0.25rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-pink);
    transform: translateY(-2px);
}



/* privacy Hero Section */
.refund-hero {
    min-height: 100vh;
    background: url("/images/Refund_Policy.jpg") no-repeat center center/cover;
    /* background: url("./images/Lock_privacy.png") no-repeat center center/cover; */


    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

/* Black overlay */
.refund-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* 55% black overlay */
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Content Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 2rem 0;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: end;
    height: auto;

    position: relative;
}

/* Floating Contact Cards */
.floating-cards {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: 10rem;

}

.refund-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
    color: white;
    transition: var(--transition);
    position: relative;
    animation: floatCard 6s ease-in-out infinite;
}

.legal-card {
    background: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0;
    color: white;
    transition: var(--transition);
    position: relative;
    animation: floatCard 6s ease-in-out infinite;
}

.refund-card:nth-child(2) {
    animation-delay: 2s;
    margin-left: 2rem;
}

.refund-card:nth-child(3) {
    animation-delay: 4s;
    margin-left: 4rem;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.refund-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.refund-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
}

.refund-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.refund-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Hero Content Styling */
.hero-content {
    color: white;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #de32ee, #e9ac29, #40badf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFAA6F;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.8s both;
}




@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(233, 30, 99, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .refund-hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-left,
    .hero-right {
        height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .floating-cards {
        margin-top: 3rem;
    }

    .refund-card:nth-child(2),
    .refund-card:nth-child(3) {
        margin-left: 0;
    }

    #navbarContent {
        background: white;
    }

    .refund-details i{
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .refund-card {
        padding: 1.5rem;
    }
}

/* Contact Form Section */
.refund-form-section {
    padding: 100px 0;
    background: white;
}

.refund-form-container {
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}

.form-visual {
    background: var(--primary-gradient);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.form-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.form-visual h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-visual p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.visual-features {
    position: relative;
    z-index: 2;
}

.visual-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.visual-feature i {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 30px;
}

.refund-form {
    padding: 4rem 3rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: var(--transition);
    background: transparent;
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-floating {
    margin-bottom: 2rem;
}

.form-floating .form-control {
    padding: 1.625rem 1.5rem 0.625rem;
}

.form-floating label {
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    background: var(--primary-gradient);
    border: none;
    color: white;
    border-radius: 15px;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}



/* Privacy Section */

.refund-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.refund-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.refund-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: justify;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;

}


/* .refund-info-card {
            background: black;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: left;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 2px solid pink;
        } */



.refund-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.refund-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-pink);
}

.refund-info-card:hover::before {
    transform: scaleX(1);
}

.refund-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;



}

.heading-box-shadow {
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */

    box-shadow: rgba(250, 20, 20, 0.35) 0px 5px 15px;

    box-shadow: rgba(198 26 239 / 35%) 0px 5px 15px;

    border-radius: 37px;
}

.refund-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.refund-info-card:hover .refund-icon {
    transform: scale(1.1) rotate(5deg);
}

.refund-card-title {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.refund-details {
    line-height: 1.6;
}

.refund-details p {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.refund-details i {
    color: var(--primary-pink);
    margin-right: 0.75rem;
    width: 18px;
    flex-shrink: 0;
}

.refund-highlight {
    /* background: var(--bg-light); */

    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    /* border-left: 2px solid var(--primary-pink);
            border-bottom: 2px solid var(--primary-pink); */
    border-image: linear-gradient(90deg, #f66fff 0%, #F04988 15%, #8A64D4 45%, #4790CC 75%, #56BCAC 90%) 1;


}

.refund-action {
    margin-top: 1.5rem;
}

.refund-action .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    text-transform: none;
}




/* Partners Section Styles Start Here */

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Animated scroll container */
.marquee-content {
    display: flex;
    gap: 60px;
    animation: scrollLeft 30s linear infinite;
    width: max-content;
    align-items: center;
}

/* Partner logo styles */
.partner-logo {
    height: 119px;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
}

.partners-section {
    background: url(/images/PARTNERBG.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 5px;
    border-radius: 299px;
    overflow: hidden;
}

.partner-logo:hover {
    opacity: 1;
}

/* Marquee animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Partners Responsive Styles */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
        border-radius: 0px;

    }

    .partner-logo {
        height: 50px;
    }

    .marquee-content {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        height: 40px;
    }

    .marquee-content {
        gap: 20px;
    }
}

/* Partners Section Styles End Here */



/* Footer */
.footer-section {
    /* background: var(--footer-gradient); */
    color: white;
    position: relative;
    border-radius: 40px 40px 0 0;
    margin-top: 100px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
}



.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
    background: url('/images/footer_bg.png') center / cover no-repeat;

}

.footer-section .container-fluid {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 2rem;
    color: white;
}

.brand-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
    margin-bottom: 2rem;
}

.footer-robot {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.brand-info {
    flex: 1;
}

.footer-logo {
    height: 65px;
    width: auto;
    /* filter: brightness(0) invert(1); */
    margin-bottom: 1rem;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.refund-info p {
    color: rgba(255, 255, 255);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid rgb(222, 41, 238);
    border-radius: 12px;
    padding: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(219, 50, 253, 0.3);
}

.social-links a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 2rem;
}

.footer-bottom {
    color: rgba(255, 255, 255);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Utility Classes */
.section-tag {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .form-visual,
    .refund-form {
        padding: 3rem 2rem;
    }

    .terms-details i{
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .form-visual,
    .refund-form {
        padding: 2rem 1.5rem;
    }

    .refund-info-card,
    .office-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .modern-navbar {
        margin-top: 1.3rem;
    }
}



/* Content should stay above overlay */


.hero-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.5rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.small,
small {
    font-size: 1em;
}


.gradient-border {

    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, #FFAA6F 0%, #F04988 15%, #8A64D4 45%, #4790CC 75%, #56BCAC 90%) border-box;

    border-radius: 20px;
    border: 3px solid transparent;
}

.font-size-larger {
    font-size: larger;
    color: black;
}