 :root {
            --primary-color: #6927ff;
            --secondary-color: #e20b50;
            --dark-color: #1e1e1e;
            --text-color: #333;
            --light-gray: #f5f5f5;
            --medium-gray: #777;
            --white: #fff;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: 'Arial Black', Arial, sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-main);
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--white);
        }
        
        /* Header */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .logo img {
            max-height: 70px;
            width: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 0 15px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--secondary-color);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: var(--dark-color);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(105, 39, 255, 0.8), rgba(226, 11, 80, 0.8)), 
                        url('https://via.placeholder.com/1600x600') center/cover no-repeat;
            color: var(--white);
            text-align: center;
            padding: 80px 20px;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-family: var(--font-heading);
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Player */
        .player-container {
            background-color: var(--light-gray);
            padding: 30px 20px;
            border-radius: 10px;
            margin: 30px auto;
            max-width: 800px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .content-section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-family: var(--font-heading);
            color: var(--dark-color);
            font-size: 2rem;
        }
        
        /* Sidebar */
        .sidebar {
            background-color: var(--light-gray);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .sidebar-title {
            font-family: var(--font-heading);
            margin-bottom: 20px;
            color: var(--dark-color);
            font-size: 1.3rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 8px;
        }
        
        .sidebar-list {
            list-style: none;
        }
        
        .sidebar-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .sidebar-list a {
            text-decoration: none;
            color: var(--text-color);
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }
        
        .sidebar-list a:hover {
            color: var(--secondary-color);
        }
        
        .sidebar-list i {
            margin-right: 8px;
            color: var(--primary-color);
            font-size: 0.8rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .footer-widget h4 {
            font-family: var(--font-heading);
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: var(--white);
        }
        
        .footer-widget a {
            display: block;
            color: #ccc;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        
        .footer-widget a:hover {
            color: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .nav-menu {
                order: 3;
                width: 100%;
                margin-top: 15px;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .nav-menu li {
                margin: 5px 10px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu li {
                margin: 10px 0;
            }
            
            .hero {
                padding: 60px 20px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .header-container {
                padding: 10px 15px;
            }
            
            .logo img {
                max-height: 50px;
            }
            
            .hero {
                padding: 40px 15px;
            }
            
            .hero h1 {
                font-size: 1.5rem;
            }

            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* Estilos del reproductor mejorado */
        .radio-player-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .radio-player {
            width: 100%;
            height: 130px;
            background: linear-gradient(135deg, #6927ff 0%, #8a5cff 50%, #6927ff 100%);
            display: flex;
            align-items: center;
            padding: 0 25px;
            color: white;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(105, 39, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin: 15px 0;
        }

        /* Logo Section */
        .player-logo {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            margin-right: 25px;
        }

        .logo-container {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, #6927ff, #8a5cff);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 6px 20px rgba(105, 39, 255, 0.5);
            position: relative;
            overflow: hidden;
        }

        .logo-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
            animation: rotate 8s linear infinite;
        }

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

        /* Info Section */
        .player-info {
            flex: 1;
            min-width: 0;
            padding-right: 20px;
        }

        .station-header {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .station-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
            letter-spacing: 0.5px;
        }

        .live-badge {
            background: linear-gradient(135deg, #6927ff, #8a5cff);
            color: white;
            padding: 4px 12px;

            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            animation: pulse 2s infinite;
            box-shadow: 0 3px 15px rgba(105, 39, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        .track-display {
            margin-bottom: 8px;
        }

        .song-title {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 2px;
        }

        .song-artist {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .station-details {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .frequency {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .listeners {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 10px;
            border-radius: 12px;
        }

        /* Controls Section */
        .player-controls {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            min-width: 200px;
        }

        .control-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .control-btn {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .play-btn {
            background: linear-gradient(135deg, #6927ff, #8a5cff);
            width: 50px;
            height: 50px;
            box-shadow: 0 6px 25px rgba(105, 39, 255, 0.6);
            font-size: 1.2rem;
        }

        .play-btn:hover {
            background: linear-gradient(135deg, #8a5cff, #6927ff);
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(105, 39, 255, 0.8);
        }

        .equalizer {
            display: flex;
            align-items: flex-end;
            height: 35px;
            gap: 4px;
            background: rgba(0, 0, 0, 0.2);
            padding: 0 15px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bar {
            width: 5px;
            background: linear-gradient(to top, #6927ff, #8a5cff, #6927ff);
            border-radius: 3px 3px 0 0;
            animation: equalize 1.5s infinite ease-in-out;
            box-shadow: 0 2px 8px rgba(105, 39, 255, 0.4);
        }

        .bar:nth-child(1) { animation-delay: 0.1s; height: 10px; }
        .bar:nth-child(2) { animation-delay: 0.2s; height: 18px; }
        .bar:nth-child(3) { animation-delay: 0.3s; height: 25px; }
        .bar:nth-child(4) { animation-delay: 0.4s; height: 15px; }
        .bar:nth-child(5) { animation-delay: 0.5s; height: 22px; }
        .bar:nth-child(6) { animation-delay: 0.6s; height: 12px; }

        @keyframes equalize {
            0%, 100% { transform: scaleY(1); }
            50% { transform: scaleY(0.3); }
        }

        .playing .bar {
            animation-play-state: running;
        }

        .paused .bar {
            animation-play-state: paused;
            opacity: 0.6;
        }

        /* Volume Section */
        .player-volume {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            min-width: 150px;
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .volume-slider {
            width: 90px;
            -webkit-appearance: none;
            height: 5px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            outline: none;
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #6927ff;
            cursor: pointer;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
            border: 2px solid white;
            transition: all 0.2s ease;
        }

        .volume-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            background: #8a5cff;
        }

        .player-status {
            background: linear-gradient(135deg, rgba(105, 39, 255, 0.3), rgba(138, 92, 255, 0.2));
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #8a5cff;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Progress Bar */
        .progress-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0 25px 10px;
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .progress {
            height: 100%;
            background: linear-gradient(to right, #6927ff, #8a5cff);
            width: 0%;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .time-display {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 5px;
        }

        /* Click Message */
        .click-message {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #6927ff, #8a5cff);
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 0.85rem;
            font-weight: bold;
            animation: slideDown 3s ease-in-out;
            z-index: 10;
            box-shadow: 0 4px 20px rgba(105, 39, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: none;
        }

        @keyframes slideDown {
            0%, 100% { opacity: 0; transform: translateY(-20px); }
            50% { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .radio-player {
                height: auto;
                padding: 20px;
                flex-direction: column;
                gap: 20px;
            }
            
            .player-logo {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .player-info {
                padding-right: 0;
                text-align: center;
            }
            
            .station-header {
                justify-content: center;
            }
            
            .station-details {
                justify-content: center;
            }
            
            .player-volume {
                align-items: center;
            }
            
            .progress-container {
                position: relative;
                padding: 0;
                margin-top: 10px;
            }
        }

        /* NUEVA SECCIÓN TECNOLÓGICA */
        .tech-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .tech-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .tech-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .tech-icon {
            width: 80px;
            height: 80px;
            margin: 30px auto 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 20px rgba(105, 39, 255, 0.3);
        }

        .tech-content {
            padding: 0 30px 30px;
            text-align: center;
        }

        .tech-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-family: var(--font-heading);
        }

        .tech-content p {
            color: var(--medium-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .tech-features {
            list-style: none;
            text-align: left;
            margin-bottom: 25px;
        }

        .tech-features li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            color: var(--text-color);
        }

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

        .tech-features i {
            color: var(--primary-color);
            margin-right: 10px;
        }

        .tech-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .tech-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(105, 39, 255, 0.3);
        }

        .tech-highlight {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-top: 60px;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }

        .tech-highlight::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 1000 100" fill="%23ffffff20"><polygon points="1000,100 1000,0 0,100"></polygon></svg>');
            background-size: cover;
        }

        .tech-highlight h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .tech-highlight p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .tech-grid {
                grid-template-columns: 1fr;
            }
            
            .tech-highlight h2 {
                font-size: 2rem;
            }
            
            .tech-highlight p {
                font-size: 1rem;
            }
        }

        /* ESTILOS CORREGIDOS PARA LA SECCIÓN "BIENVENIDO A RADIO CALETA" */
        .about-section {
            padding: 60px 0;
            background-color: var(--white);
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 50px;
			 max-width: 1200px;
        }

        .about-text h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-family: var(--font-heading);
			width:1200px;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: var(--text-color);
        }

        .about-features {
            margin-top: 30px;
        }

        .about-features h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            font-family: var(--font-heading);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background-color: var(--light-gray);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .feature-text {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 0.9rem;
        }

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

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .programming-section {
            margin: 40px 0;
            padding: 40px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .programming-section h3 {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--dark-color);
            font-family: var(--font-heading);
        }

        .programming-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .programming-item {
            text-align: center;
            padding: 20px 10px;
            background-color: var(--light-gray);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .programming-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .programming-item i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: block;
        }

        .programming-name {
            font-weight: 600;
            color: var(--dark-color);
        }

        .social-section {
            text-align: center;
            padding: 40px 0;
        }

        .social-section h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            font-family: var(--font-heading);
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(105, 39, 255, 0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .programming-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .about-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .programming-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .social-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .about-text h2 {
                font-size: 1.8rem;
            }
            
            .programming-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-text {
                font-size: 0.85rem;
            }