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

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-primary {
    background: #4f46e5;
    color: white;
}

.button-primary:hover {
    background: #4338ca;
}

.button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.button-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
}

.author-name {
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.author-role {
    color: #64748b;
    margin: 0;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid #4f46e5;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-name {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
}

.period {
    color: #64748b;
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-icon {
    font-size: 1.5rem;
    color: #4f46e5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 0 0 80px;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.contact-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
}

/* Contact Form 7 Styles */
.wpcf7-form {
    display: grid;
    gap: 1.5rem;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #4f46e5;
}

.wpcf7-submit {
    background: #4f46e5 !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.wpcf7-submit:hover {
    background: #4338ca !important;
}

.wpcf7-response-output {
    margin: 2rem 0 0 !important;
    padding: 1rem !important;
    border-radius: 6px !important;
    text-align: center !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #dcfce7 !important;
    border-color: #22c55e !important;
    color: #166534 !important;
}

.wpcf7 form.failed .wpcf7-response-output {
    background: #fee2e2 !important;
    border-color: #ef4444 !important;
    color: #991b1b !important;
}

.wpcf7-not-valid-tip {
    color: #ef4444 !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
}

/* Page Subtitle */
.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 1rem 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: white;
}

.page-content .container {
    max-width: 800px;
}

.page-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.page-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin: 2.5rem 0 1.5rem;
}

.page-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 2rem 0 1rem;
}

.page-content ul,
.page-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.page-content a {
    color: #4f46e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #4338ca;
}

/* FAQ Page Specific */
.page-faq .faq-section {
    padding-top: 0;
}

/* Pricing Page Specific */
.page-pricing .pricing-section {
    padding-top: 0;
}

.page-pricing .cta-section {
    margin-top: 60px;
}

/* About Page Styles */
.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background: #f8fafc;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse .section-content {
    direction: ltr;
}

.section-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Page Styles */
.team-section {
    padding: 80px 0;
}

.team-section:nth-child(even) {
    background: #f8fafc;
}

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

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-name {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.team-role {
    color: #4f46e5;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.social-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #4f46e5;
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
}

.services-section:nth-child(even) {
    background: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    will-change: transform;
}

.service-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.service-features li:last-child {
    border-bottom: none;
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease, opacity 0.6s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-grid.reverse {
        direction: ltr;
    }

    .section-content h2 {
        font-size: 2rem;
    }

    .team-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .team-card,
    .service-card,
    .process-step {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
    will-change: opacity;
}

.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Enhanced Hover Effects */
.team-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-social {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.service-icon {
    transition: transform 0.3s ease;
    will-change: transform;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.process-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Effect */
.section-image {
    overflow: hidden;
    position: relative;
}

.section-image img {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Enhanced Button Hover Effects */
.button {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    will-change: width, height;
}

.button:hover::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Card Hover Effects */
.feature-item,
.value-card,
.team-card,
.service-card,
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.feature-item:hover,
.value-card:hover,
.team-card:hover,
.service-card:hover,
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px -2px rgb(0 0 0 / 0.1);
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header {
    animation: fadeInUp 0.8s ease-out;
}

/* --- Modern Header Styles --- */
.modern-header {
    background: linear-gradient(90deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
    box-shadow: 0 2px 8px -2px rgba(80, 80, 160, 0.05);
    position: relative;
    z-index: 100;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 0 20px;
}
.site-branding {
    display: flex;
    align-items: center;
}
.site-logo-title {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.site-logo-circle {
    background: #fff;
    color: #4f46e5;
    font-weight: 700;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 2px 8px -2px rgba(80, 80, 160, 0.08);
}
.site-title-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}
.site-navigation {
    display: flex;
    align-items: center;
}
/* Robust selector for main menu */
.main-menu,
.site-navigation ul.main-menu,
.site-navigation > ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 2rem;
    list-style: none !important;
    margin: 0;
    padding: 0;
    align-items: center;
}
.main-menu li,
.site-navigation ul.main-menu > li,
.site-navigation > ul > li {
    position: relative;
    list-style: none !important;
}
.main-menu a,
.site-navigation ul.main-menu a,
.site-navigation > ul a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 0;
    transition: color 0.2s;
    display: block;
}
.main-menu a:hover,
.main-menu .current-menu-item > a,
.site-navigation ul.main-menu a:hover,
.site-navigation ul.main-menu .current-menu-item > a {
    color: #ffe066;
}

/* Remove bullets for all nested lists */
.site-navigation ul,
.site-navigation ul ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
}
.nav-toggle-bar {
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Responsive Header */
@media (max-width: 900px) {
    .header-flex {
        flex-direction: row;
        padding: 0 10px;
    }
    .main-menu,
    .site-navigation ul.main-menu,
    .site-navigation > ul {
        gap: 1rem;
    }
}
@media (max-width: 700px) {
    .header-flex {
        flex-direction: row;
        min-height: 56px;
    }
    .site-title-text {
        font-size: 1.1rem;
    }
    .site-logo-circle {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        margin-right: 8px;
    }
    .site-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #4f46e5;
        box-shadow: 0 4px 16px -2px rgba(80, 80, 160, 0.08);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2rem;
        z-index: 999;
    }
    .site-navigation.open {
        display: flex;
    }
    .main-menu,
    .site-navigation ul.main-menu,
    .site-navigation > ul {
        flex-direction: column !important;
        gap: 0.5rem;
        width: 100%;
    }
    .main-menu a,
    .site-navigation ul.main-menu a,
    .site-navigation > ul a {
        font-size: 1rem;
        padding: 10px 0;
        width: 100%;
    }
    .nav-toggle {
        display: flex;
    }
}

/* Force menu to row for: nav > .main-menu > ul */
.site-header nav .main-menu > ul {
  display: flex !important;
  flex-direction: row !important;
  gap: 2rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
}
.site-header nav .main-menu > ul > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-header nav .main-menu > ul a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
  padding: 8px 0 !important;
  transition: color 0.2s !important;
  display: block !important;
}
.site-header nav .main-menu > ul a:hover,
.site-header nav .main-menu > ul .current-menu-item > a,
.site-header nav .main-menu > ul .current_page_item > a {
  color: #ffe066 !important;
}
