/* ========================================
   MUSEUM-STYLE CULTURAL GUIDE DESIGN SYSTEM
   Editorial, heritage-focused aesthetic
   ======================================== */

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: #1a2530;
    background: #f8fafc;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Enhanced readability spacing */
p {
    margin-bottom: 1.75rem;
    font-size: 17px;
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Crimson Text', 'Libre Baskerville', serif;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #0f172a;
    line-height: 1.2;
}

/* Modern header - clean and professional */
.novix-header {
    position: sticky;
    top: 0;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 10000;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100vw;
    overflow-x: visible;
}

.novix-header.novix-scrolled {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

.novix-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.novix-logo {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a2530;
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
}

.novix-logo::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 1px;
    background: #3b82f6;
    opacity: 0.6;
}

nav {
    position: relative;
    z-index: 10001;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.01em;
}

nav a:hover {
    color: #3b82f6;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%;
}

/* Subtle dropdown menu */
.novix-nav-dropdown {
    position: relative;
}

.novix-nav-dropdown > a::after {
    content: '▾';
    margin-left: 4px;
    font-size: 9px;
    transition: transform 0.3s ease;
    color: #64748b;
    opacity: 0.7;
}

.novix-nav-dropdown:hover > a::after {
    transform: rotate(180deg);
    color: #1a2530;
    opacity: 1;
}

.novix-dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #f8fafc;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    max-width: calc(100vw - 40px);
    z-index: 9999;
    border-radius: 6px;
    padding: 12px 0;
    border: 1px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-4px);
    transition: all 0.3s ease;
}

.novix-nav-dropdown:hover .novix-dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.novix-dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.novix-dropdown-content a:hover {
    background: #f1f5f9;
    color: #1a2530;
}

/* Cinematic hero section - documentary style */
.novix-hero {
    position: relative;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    z-index: 1;
}

.novix-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 1;
}

.novix-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at center, transparent 40%, rgba(26, 26, 26, 0.4) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
    z-index: 1;
}

.novix-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 50px;
    width: 100%;
    box-sizing: border-box;
}

.novix-hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 28px;
    color: #f1f5f9;
    line-height: 1.1;
    letter-spacing: -0.8px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.novix-hero .novix-subtitle {
    font-size: 18px;
    margin-bottom: 36px;
    font-weight: 400;
    color: #3b82f6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.novix-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #f1f5f9;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

/* Content Container */
.novix-content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
    box-sizing: border-box;
}

/* Museum-style feature sections */
.novix-feature-section {
    padding: 120px 0;
    position: relative;
    counter-increment: section;
}

.novix-feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: #3b82f6;
    opacity: 0.3;
}

.novix-feature-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: #e8e2d8;
    opacity: 0.4;
}

.novix-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.novix-feature-text h3 {
    font-family: 'Crimson Text', serif;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 28px;
    color: #1a2530;
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.novix-feature-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #475569;
    font-weight: 400;
}

.novix-feature-image img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    filter: sepia(0.15) saturate(0.85) contrast(1.02) brightness(1.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(232, 226, 216, 0.4);
}

.novix-feature-image img:hover {
    filter: sepia(0.08) saturate(0.9) contrast(1.05) brightness(1.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Split feature - editorial layout */
.novix-split-feature {
    padding: 100px 0;
    background: #f5f3ed;
}

.novix-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.novix-split-image img {
    width: 100%;
    max-width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    filter: sepia(0.12) saturate(0.88) contrast(1.03) brightness(1.02);
    transition: all 0.4s ease;
    border: 1px solid rgba(232, 226, 216, 0.5);
}

.novix-split-image img:hover {
    filter: sepia(0.06) saturate(0.92) contrast(1.04) brightness(1.05);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
}

.novix-split-text h2 {
    font-family: 'Crimson Text', serif;
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 32px;
    color: #1a2530;
    letter-spacing: -0.2px;
    line-height: 1.15;
}

.novix-split-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #475569;
    max-width: 460px;
    font-weight: 400;
}

/* Benefits section - informational cards */
.novix-benefits-section {
    padding: 110px 0;
    text-align: center;
    position: relative;
    background: #f8fafc;
}

.novix-benefits-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #3b82f6;
    opacity: 0.4;
}

.novix-benefits-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 70px;
    color: #1a2530;
    letter-spacing: -0.5px;
    margin-top: 15px;
    line-height: 1.15;
}

.novix-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.novix-benefit-item {
    text-align: left;
    padding: 40px 36px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.novix-benefit-item:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.novix-benefit-item h3 {
    font-family: 'Crimson Text', serif;
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 22px;
    color: #1a2530;
    letter-spacing: -0.2px;
    line-height: 1.25;
}

.novix-benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    font-weight: 400;
}

/* Image gallery - documentary style */
.novix-gallery-section {
    padding: 110px 0;
    background: #f8fafc;
}

.novix-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.novix-gallery-grid img {
    width: 100%;
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
    transition: all 0.4s ease;
    filter: sepia(0.18) saturate(0.82) contrast(1.04) brightness(1.01);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(232, 226, 216, 0.6);
}

.novix-gallery-grid img:hover {
    filter: sepia(0.12) saturate(0.88) contrast(1.06) brightness(1.03);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
}

/* Testimonials section - visitor experiences */
.novix-testimonials-section {
    padding: 110px 0;
    background: #f5f3ed;
}

.novix-testimonials-section h2 {
    font-family: 'Crimson Text', serif;
    font-size: 44px;
    font-weight: 300;
    margin-bottom: 70px;
    color: #1a2530;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.novix-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.novix-testimonial-card {
    padding: 40px 36px;
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

.novix-testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.novix-testimonial-stars {
    margin-bottom: 24px;
}

.novix-testimonial-stars span {
    color: #3b82f6;
    font-size: 16px;
    letter-spacing: 1px;
    opacity: 0.7;
}

.novix-testimonial-quote {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    font-style: normal;
    margin-bottom: 24px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.novix-testimonial-author {
    font-size: 15px;
    font-weight: 400;
    color: #64748b;
    text-align: right;
    font-family: 'Crimson Text', serif;
    font-style: italic;
}

/* Burger Menu */
.novix-burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-left: 16px;
}

.novix-burger-menu .novix-burger-line {
    width: 24px;
    height: 2px;
    background: #666666;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.novix-burger-menu.active .novix-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.novix-burger-menu.active .novix-burger-line:nth-child(2) {
    opacity: 0;
}

.novix-burger-menu.active .novix-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.novix-mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid #e2e8f0;
    z-index: 9999;
    max-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transition: max-height 0.3s ease;
}

.novix-mobile-menu.open {
    display: block;
    max-height: 100vh;
    overflow-y: auto;
}

.novix-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10000;
}

.novix-menu-close:hover {
    color: #1a2530;
}

.novix-mobile-menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    padding: 32px 30px;
    margin: 0;
}

.novix-mobile-menu ul li {
    margin: 0;
}

.novix-mobile-menu a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 16px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.novix-mobile-menu a:hover {
    color: #3b82f6;
}

/* Footer */
/* Modern institutional footer */
.novix-footer {
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #f1f5f9 0%, #f8fafc 100%);
    color: #475569;
    border-top: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.novix-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
    opacity: 0.4;
}

.novix-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Institutional branding section */
.novix-footer-branding {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(232, 226, 216, 0.5);
}

.novix-footer-logo {
    font-family: 'Crimson Text', serif;
    font-size: 26px;
    font-weight: 300;
    color: #1a2530;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.novix-footer-tagline {
    font-size: 15px;
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    line-height: 1.5;
    max-width: 450px;
    margin: 0 auto;
}

/* Navigation and resources grid */
.novix-footer-nav-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.novix-footer-nav-group {
    text-align: center;
}

.novix-footer-nav-title {
    font-family: 'Crimson Text', serif;
    font-size: 17px;
    font-weight: 400;
    color: #1a2530;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.novix-footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.novix-footer-nav-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    padding: 6px 0;
    position: relative;
}

.novix-footer-nav-links a:hover {
    color: #1a2530;
    transform: translateX(3px);
}

.novix-footer-nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.novix-footer-nav-links a:hover::before {
    width: 100%;
}

/* Cultural context section */
.novix-footer-cultural {
    background: rgba(250, 248, 242, 0.9);
    border: 1px solid rgba(232, 226, 216, 0.7);
    border-radius: 6px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.novix-footer-cultural-title {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    font-weight: 300;
    color: #1a2530;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}

.novix-footer-cultural-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    font-family: 'Inter', sans-serif;
    max-width: 650px;
    margin: 0 auto;
}

/* Legal and institutional section */
.novix-footer-legal-section {
    border-top: 1px solid rgba(232, 226, 216, 0.5);
    padding-top: 50px;
}

.novix-footer-disclaimer {
    background: rgba(42, 42, 42, 0.02);
    border: 1px solid rgba(232, 226, 216, 0.6);
    border-radius: 4px;
    padding: 24px 30px;
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    text-align: center;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}

.novix-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.novix-footer-copyright {
    font-size: 13px;
    color: #888888;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.novix-footer-institutional {
    font-size: 13px;
    color: #888888;
    font-family: 'Inter', sans-serif;
    text-align: right;
    font-style: italic;
}

/* Animations */
.novix-animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.novix-feature-section,
.novix-benefit-item,
.novix-testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Page loaded state */
.novix-loaded .novix-feature-section,
.novix-loaded .novix-benefit-item,
.novix-loaded .novix-testimonial-card {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent horizontal overflow */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .novix-feature-grid,
    .novix-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .novix-feature-section::before {
        display: none;
    }

    .novix-hero h1 {
        font-size: 48px;
    }

    .novix-benefits-section h2,
    .novix-testimonials-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .novix-header-content {
        padding: 20px 20px;
    }

    nav {
        display: none;
    }

    .novix-burger-menu {
        display: flex;
    }

    .novix-mobile-menu {
        top: 70px;
    }

    .novix-hero {
        height: 60vh;
    }

    .novix-hero h1 {
        font-size: 36px;
        letter-spacing: -0.3px;
    }

    .novix-hero .novix-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .novix-hero p {
        font-size: 16px;
    }

    .novix-content-container {
        padding: 0 20px;
    }

    .novix-hero-content {
        padding: 0 20px;
    }

    .novix-feature-section {
        padding: 80px 0;
    }

    .novix-feature-text h3 {
        font-size: 28px;
    }

    .novix-split-feature {
        padding: 70px 0;
    }

    .novix-split-text h2 {
        font-size: 32px;
    }

    .novix-benefits-section {
        padding: 80px 0;
    }

    .novix-benefits-section h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .novix-benefit-item {
        padding: 32px 24px;
    }

    .novix-gallery-section {
        padding: 80px 0;
    }

    .novix-testimonials-section {
        padding: 80px 0;
    }

    .novix-testimonials-section h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .novix-footer-branding {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .novix-footer-nav-section {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 45px;
    }

    .novix-footer-nav-group {
        text-align: left;
    }

    .novix-footer-cultural {
        padding: 30px 25px;
        margin-bottom: 40px;
    }

    .novix-footer-cultural-text {
        font-size: 14px;
    }

    .novix-footer-meta {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .novix-footer-institutional {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .novix-footer {
        padding: 60px 0 50px;
    }

    .novix-footer-branding {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .novix-footer-logo {
        font-size: 22px;
    }

    .novix-footer-tagline {
        font-size: 13px;
    }

    .novix-footer-nav-section {
        gap: 30px;
        margin-bottom: 40px;
    }

    .novix-footer-cultural {
        padding: 25px 20px;
        margin-bottom: 35px;
    }

    .novix-footer-cultural-title {
        font-size: 18px;
    }

    .novix-footer-disclaimer {
        padding: 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .novix-hero h1 {
        font-size: 32px;
    }

    .novix-hero .novix-subtitle {
        font-size: 14px;
    }

    .novix-hero p {
        font-size: 15px;
    }

    .novix-feature-text h3 {
        font-size: 26px;
    }

    .novix-split-text h2 {
        font-size: 28px;
    }

    .novix-benefits-section h2 {
        font-size: 28px;
    }

    .novix-testimonials-section h2 {
        font-size: 28px;
    }

    .novix-benefit-item h3 {
        font-size: 24px;
    }

    .novix-testimonial-card {
        padding: 32px 24px;
    }
}