:root {
    --primary: #1E4DB7;
    --secondary: #6C8CD5;
    --primary-hover: rgba(108, 140, 213, 0.3);
    --accent: #F2F5FA;
    --text: #1A1A1A;
    --text-light: #6B7280;
    --warm-gray: #F7F7F7;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --font: 'Inter', 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --shimmer-gold: #FFD700;
    --shimmer-pink: #FF69B4;
    --shimmer-cyan: #00CED1;
    --shimmer-green: #32CD32;
}

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

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo with animated tagline */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    background: linear-gradient(90deg, var(--shimmer-gold) 0%, var(--shimmer-pink) 20%, var(--shimmer-cyan) 40%, var(--shimmer-green) 60%, var(--shimmer-pink) 80%, var(--shimmer-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    animation: fadeInOut 3s ease-in-out infinite;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
}

.nav-link.cta {
    background: var(--white);
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link.cta:hover {
    background: var(--primary-hover);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    text-align: 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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Floating elements for hero section */
.floating-element {
    position: absolute;
    opacity: 0.15;
    animation: float ease-in-out infinite;
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}

.floating-element--1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-duration: 6s;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.floating-element--2 {
    width: 60px;
    height: 60px;
    top: 25%;
    right: 15%;
    animation-duration: 8s;
    animation-delay: 1s;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
}

.floating-element--3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-duration: 7s;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.floating-element--4 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    right: 10%;
    animation-duration: 9s;
    animation-delay: 0.5s;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.floating-element--5 {
    width: 90px;
    height: 90px;
    top: 40%;
    left: 5%;
    animation-duration: 10s;
    animation-delay: 1.5s;
    background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
}

.floating-element--6 {
    width: 75px;
    height: 75px;
    top: 35%;
    right: 8%;
    animation-duration: 8.5s;
    animation-delay: 2.5s;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px; /* Increased from 800px to accommodate hero images */
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 350px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.hero-image.active {
    opacity: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
}

.hero-title-text.active {
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    animation-play-state: paused;
}

.btn-outline {
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
}

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

/* Why Section */
.why-section {
    padding: 100px 20px;
    background: var(--warm-gray);
}

.why-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin: -1.5rem auto 3rem;
    max-width: 800px;
    line-height: 1.6;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: height 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 77, 183, 0.2);
}

.feature-card:hover::before {
    height: 6px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    animation: iconBounce 0.6s ease;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 100px 20px;
    background: var(--white);
}

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

.service-card {
    background: var(--accent);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(30, 77, 183, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(30, 77, 183, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(30, 77, 183, 0.15);
    border-color: var(--primary);
    background: var(--white);
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.3) translateY(-5px);
    animation: iconPulse 0.8s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}


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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.2) rotate(5deg) translateY(0);
    }
    25% {
        transform: scale(1.25) rotate(5deg) translateY(-10px);
    }
    50% {
        transform: scale(1.15) rotate(5deg) translateY(-5px);
    }
    75% {
        transform: scale(1.22) rotate(5deg) translateY(-7px);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.3) translateY(-5px);
    }
    25% {
        transform: scale(1.4) translateY(-8px);
    }
    50% {
        transform: scale(1.25) translateY(-3px);
    }
    75% {
        transform: scale(1.35) translateY(-6px);
    }
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 120px 20px 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.content-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.content-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content-card ul {
    list-style: none;
    padding-left: 0;
}

.content-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--warm-gray);
    color: var(--text-light);
}

.content-card ul li:last-child {
    border-bottom: none;
}

.content-card ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Subpage Header (Simple variant) */
.subpage-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.subpage-header .navbar {
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.subpage-header .logo {
    color: var(--white);
    background: linear-gradient(90deg, var(--shimmer-gold) 0%, var(--shimmer-pink) 20%, var(--shimmer-cyan) 40%, var(--shimmer-green) 60%, var(--shimmer-pink) 80%, var(--shimmer-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.subpage-header .hamburger .bar {
    background: var(--white);
}

.subpage-header .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.subpage-header .nav-link:hover,
.subpage-header .nav-link.active {
    color: var(--white);
}

.subpage-header .nav-link.active::after {
    background: var(--white);
}

.subpage-header .nav-link.cta {
    background: var(--white);
    color: var(--primary) !important;
}

.subpage-header .nav-link.cta:hover {
    background: var(--primary-hover);
    color: var(--white) !important;
}

.subpage-hero {
    text-align: center;
    padding: 100px 20px 80px;
}

.subpage-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.subpage-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content sections (Simple variant) */
.content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.content .section {
    margin-bottom: 3rem;
}

.content .section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.content .section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    background: var(--accent);
    padding: 3rem;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(30, 77, 183, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 77, 183, 0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu li a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: var(--white);
    }
    
    .nav-menu li a.cta {
        background: var(--white);
        color: var(--primary) !important;
    }
    
    .nav-menu li a.cta:hover {
        background: var(--primary-hover);
        color: var(--white) !important;
    }
    
    /* Subpage header mobile styles */
    .subpage-header .nav-menu {
        background-color: var(--primary);
        top: 70px;
    }
    
    .subpage-header .nav-menu li a {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .subpage-header .nav-menu li a:hover,
    .subpage-header .nav-menu li a.active {
        color: var(--white);
    }
    
    .subpage-header .nav-menu li a.cta {
        background: var(--white);
        color: var(--primary) !important;
    }
    
    .subpage-header .nav-menu li a.cta:hover {
        background: var(--primary-hover);
        color: var(--white) !important;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-image-container {
        max-width: 350px;
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .services-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-image-container {
        max-width: 280px;
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card,
    .service-card,
    .content-card {
        padding: 1.5rem;
        text-align: center;
    }

    /* Center service icons on mobile */
    .service-icon {
        margin: 0 auto 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: var(--text);
        padding: 2rem 0;
    }
    
    .section-title,
    .page-title {
        color: var(--text);
    }
}