@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --red: #E31E24;      /* Logo Red */
    --blue: #205493;     /* Logo Blue */
    --red-dark: #B71C1C;
    --red-light: #FFF5F5;
    --dark: #1A1A1A;
    --gray: #666666;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

/* ── BUTTONS ── */
.btn-red {
    background: var(--red);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px; /* Rounded pill shape like Xylem */
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    text-align: center;
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(160, 0, 0, 0.3);
}

.btn-solid-red {
    background: var(--red);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.3s;
    letter-spacing: 0.5px;
}

.btn-solid-red:hover {
    background: var(--red-dark);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--red-light);
    color: var(--red-dark);
}

.btn-outline-white {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--red);
    transform: translateY(-2px);
}

/* ── HEADER ── */
.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(160, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu,
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a,
.main-nav ul a {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.main-nav ul a:hover {
    color: var(--red);
}

/* ── DROPDOWN NAVIGATION SUPER FIX ── */
.main-header-menu li,
.main-nav ul li, 
.nav-menu li {
    position: relative !important;
}

.main-header-menu .sub-menu,
.main-nav ul ul,
.nav-menu ul {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 250px !important;
    background: #1a1a1a !important; /* Dark theme like Xylem */
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 15px 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    transition: all 0.3s ease !important;
    z-index: 9999 !important;
    list-style: none !important;
}

.main-header-menu li:hover > .sub-menu,
.main-nav ul li:hover > ul,
.nav-menu li:hover > ul {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.main-header-menu .sub-menu li,
.main-nav ul ul li,
.nav-menu ul li {
    width: 100% !important;
    margin: 0 !important;
}

.main-header-menu .sub-menu a,
.main-nav ul ul a,
.nav-menu ul a {
    color: #fff !important;
    padding: 12px 25px !important;
    display: block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
    text-decoration: none !important;
    background: transparent !important;
}

.main-header-menu .sub-menu a:hover,
.main-nav ul ul a:hover,
.nav-menu ul a:hover {
    background: var(--red) !important;
    color: #fff !important;
    padding-left: 30px !important;
}

/* Add an indicator arrow for menus with children */
.menu-item-has-children > a::after {
    content: '▾';
    margin-left: 6px;
    font-size: 12px;
    opacity: 0.7;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--red);
}

/* ── HERO ── */
.hero {
    background: radial-gradient(circle at top right, var(--red) 0%, var(--red-dark) 100%);
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"><circle cx="3" cy="3" r="3"/><circle cx="13" cy="13" r="3"/></g></svg>');
    opacity: 0.3;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    color: var(--white);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-image {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.3));
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ── STATS / FEATURES PREMIUM ── */
.stats {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    background: var(--white);
    border-radius: 24px;
    padding: 45px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #f5f5f5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-15px);
    border-color: rgba(160, 0, 0, 0.1);
    box-shadow: 0 25px 70px rgba(160,0,0,0.08);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--red-light);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-icon {
    background: var(--red);
    transform: scale(1.1) rotate(8deg);
}

.stat-item:hover .stat-icon svg {
    stroke: var(--white);
}

.stat-item h3 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.stat-item:hover h3 {
    color: var(--red);
}

.stat-item p {
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ── ABOUT ── */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 42px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
}

/* ── WHY CHOOSE US ── */
.why-choose-us {
    padding: 80px 0;
    background: var(--red-light);
}

.why-choose-us .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-image {
    flex: 1;
}

.why-image img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
}

.why-content {
    flex: 1;
}

.why-title {
    font-size: 42px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 40px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    background: var(--red);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 20px;
    color: var(--red);
    margin-bottom: 8px;
    font-weight: 600;
}

.why-text p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ── BEST COACHING ── */
.best-coaching {
    padding: 80px 0;
    background: var(--white);
}

.best-coaching .container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.best-coaching-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.best-title {
    font-size: 48px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

.best-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.best-coaching-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.best-text {
    margin-bottom: 30px;
}

.best-text p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-highlight {
    color: var(--red);
    font-weight: 700;
}

/* ── SECTION TITLE ── */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    font-weight: 700;
}

.section-title p {
    color: var(--gray);
    font-size: 16px;
    margin-top: 10px;
}

.section-title span {
    color: var(--red);
}

/* ── COURSES ── */
.courses {
    padding: 80px 0;
    background: var(--light-gray);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 24px; /* More rounded like Xylem */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 80px 0;
    background: var(--red-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--red);
}

.testimonial-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

.testimonial-card .score {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ── FAQ ── */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    color: var(--dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--red-light);
}

.faq-question.active {
    background: var(--red);
    color: var(--white);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--gray);
    line-height: 1.8;
}

.faq-answer.open {
    padding: 20px;
    max-height: 300px;
}

/* ── FOOTER ── */
.site-footer {
    background: #1A0000;
    padding: 80px 0 0;
    color: var(--white);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--red);
}

.footer-about {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--red);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-bottom {
    background: #0D0000;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--white);
}

/* MOBILE HEADER FIXES */
@media (max-width: 768px) {
    .site-header .container {
        padding: 10px 15px !important;
    }
    .main-navigation {
        display: none; /* Astra burger menu handles this */
    }
    .header-right .btn-login {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }
}

/* FORM RESPONSIVENESS */
.reg-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .reg-form-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    .reg-form-grid > div {
        width: 100% !important;
        grid-column: span 1 !important;
    }
}

.post-cta-box {
    margin-top: 60px;
    padding: 40px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.post-cta-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark);
}

.post-cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post-cta-form input, 
.post-cta-form select {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    font-family: inherit;
    font-size: 16px;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.post-cta-form input:focus, 
.post-cta-form select:focus {
    border-color: var(--red);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(160, 0, 0, 0.1);
}

.post-cta-form .btn-red {
    grid-column: span 2;
    height: 55px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .post-cta-box {
        padding: 30px 20px;
        margin-top: 40px;
        border-radius: 20px;
    }
    
    .post-cta-box h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .post-cta-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .post-cta-form .btn-red {
        grid-column: span 1;
    }
}

/* SINGLE POST LAYOUT RESPONSIVE */
@media (max-width: 992px) {
    .blog-single-container {
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .blog-single-hero h1 {
        font-size: 32px !important;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    .footer-about {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-title { font-size: 48px; }
    .about .container, .why-choose-us .container, .best-coaching .container { gap: 40px; }
}

@media (max-width: 768px) {
    /* Hero */
    .hero { padding: 60px 0; }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .hero-title { font-size: 36px; }
    .hero-subtitle { margin: 0 auto 30px; font-size: 18px; }
    .hero-buttons { justify-content: center; flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .btn-red, .btn-outline-white { width: 100%; text-align: center; }

    /* Grids */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .courses-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 25px; }
    
    /* Layout Sections */
    .about .container, .why-choose-us .container, .best-coaching .container {
        flex-direction: column !important;
        text-align: center;
    }
    .best-coaching .container { flex-direction: column !important; }
    
    .why-feature { text-align: left; }
    
    /* Typography */
    .about-title, .why-title, .best-title { font-size: 32px; }
    .section-title h2 { font-size: 28px; }
    
    .site-header .container {
        justify-content: space-between !important;
    }

    .menu-toggle { 
        display: block !important; 
        margin-left: auto !important; /* Push to far right */
        background: none !important;
        border: none !important;
        font-size: 32px !important;
        color: var(--red) !important;
        cursor: pointer !important;
        outline: none !important;
    }
    
    .main-nav {
        display: none !important;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .main-nav.active {
        display: block !important;
    }
    
    .nav-menu, .main-nav ul { 
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav-menu a, .main-nav ul a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    /* Accordion Child Menus on Mobile */
    .main-nav .sub-menu,
    .main-nav ul ul {
        display: none !important; /* Hide by default on mobile */
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding-left: 25px !important;
        background: #f8f8f8 !important;
        box-shadow: none !important;
        border: none !important;
        width: 100% !important;
        transform: none !important;
    }

    .main-nav .sub-menu.mobile-open,
    .main-nav ul ul.mobile-open {
        display: block !important; /* Show when toggled */
    }

    .main-nav .menu-item-has-children > a::after {
        content: ' +';
        font-weight: bold;
        color: var(--red);
    }
    .main-nav .menu-item-has-children > a.parent-active::after {
        content: ' -';
    }

    .main-nav .sub-menu a,
    .main-nav ul ul a {
        color: #333 !important; /* Force dark text */
        font-size: 14px !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #eee !important;
    }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 30px; }
}

/* ── FINAL FORCE DROPDOWN (Desktop Only) ── */
@media (min-width: 993px) {
    .menu-item-has-children:hover > ul,
    .menu-item-has-children:hover > .sub-menu,
    .main-header-menu .menu-item-has-children:hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: translateY(0) !important;
        z-index: 99999 !important;
    }
}

/* ── HIDE LOGIN ── */
.btn-login, 
.header-action, 
.header-right,
.ast-header-button-1,
a[href*="/login"],
a[href="#login"] {
    display: none !important;
}