@charset "UTF-8";
/* CSS Document */



  /* Music Toggle Button */
        .music-toggle {
            position: absolute;
            bottom: 40px;
            right: 120px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 20px;
        }

        .music-toggle:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        .music-toggle.playing {
            background: rgba(255,255,255,0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255,255,255,0);
            }
        }
		
		
.music-toggle {
                right: 90px;
            }




  /* Featured Article */
        .featured-article {
            position: relative;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 80px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .featured-article:hover {
            transform: translateY(-5px);
        }

        .featured-article img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		
		 .read-more {
            color: #1a1a1a;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            opacity: 0.7;
        }

        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 60px 50px;
            color: white;
        }

        .featured-badge {
            display: inline-block;
            background: #ff6b6b;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .featured-overlay h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .featured-meta {
            display: flex;
            gap: 25px;
            font-size: 1rem;
            opacity: 0.9;
        }
		
		 .featured-article {
                height: 400px;
            }

            .featured-overlay {
                padding: 40px 30px;
            }

            .featured-overlay h2 {
                font-size: 1.8rem;
            }

            .newsletter-section {
                padding: 60px 30px;
            }
			
			 /* Hero Section */
        .hero-section {
            position: relative;
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&h=900&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
		
			 /* Hero Section */
        .hero-section2 {
            position: relative;
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/header-chicago1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
		
		
		
			 /* Hero Section */
        .hero-section3 {
            position: relative;
            height: 60vh;
            min-height: 500px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/header-beacon.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
		
		
	
		

        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            margin-top: 80px;
        }

        .hero-title {
            font-size: 4.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* About Content */
        .about-container2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 50px;
        }

        .about-intro2 {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-intro2 h2 {
            font-size: 3rem;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .about-intro2 p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }
		
		
		
		
		     /* News Grid */
			 
			  /* News Container */
        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 50px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

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

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

        .news-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .news-content {
            padding: 30px;
        }

        .news-category {
            display: inline-block;
            background: #f0f0f0;
            padding: 6px 15px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            margin-bottom: 15px;
        }

        .news-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a1a1a;
            line-height: 1.4;
        }

        .news-excerpt {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 20px;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            font-size: 0.9rem;
            color: #999;
        }

        .read-more {
            color: #1a1a1a;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            opacity: 0.7;
        }
		
		
		
		
			
			
			/* Story Section */
        .story-section {
            display: grid;
            grid-template-columns: .75fr 1.25fr;
            gap: 60px;
            align-items: flex-start;
            margin: 80px 0;
        }

        .story-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .story-content h3 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .story-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }

        /* Team Section */
        .team-section {
            margin: 100px 0;
        }

        .team-section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            color: #1a1a1a;
        }

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

        .team-member {
            text-align: left;
            transition: transform 0.3s ease;
        }

       

        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .team-member h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .team-member .role {
            font-size: 1rem;
            color: #666;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .team-member p {
            font-size: 1rem;
            line-height: 1.6;
            color: #777;
        }

        /* Values Section */
        .values-section {
            background: #f9f9f9;
            padding: 40px 0;
            margin: 5px -50px;
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }

      

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .value-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .value-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .value-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666;
        }
		
		.submit-btn {
            width: 100%;
            padding: 18px 40px;
            background: #1a1a1a;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
		
		 .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .about-container {
                padding: 60px 25px;
            }

            .about-intro h2 {
                font-size: 2rem;
            }

               /* About Content */
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 50px 20px 50px;
        }

        .about-intro {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-intro h2 {
            font-size: 3rem;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .about-intro p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin: 80px 0;
            padding: 60px 0;
            background: #f9f9f9;
            border-radius: 20px;
            padding: 60px 40px;
        }

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

        .stat-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


            .story-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .story-image {
                height: 350px;
            }

            .values-section {
                margin: 80px -25px;
            }

            .values-container {
                padding: 0 25px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 30px 25px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 40px 25px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
			
			
		 /* Main Home Page */	
			
body {
            font-family: 'Arial', sans-serif;
            overflow-x: hidden;
            overflow-y: auto;
            background: #000;
        }

        .slider-container {
            position: relative;
            width: 100vw;
            height: 100vh;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            transform: translate(-50%, -50%);
            border: none;
            pointer-events: none;
        }

        @media (min-aspect-ratio: 16/9) {
            .slide iframe {
                height: 56.25vw;
            }
        }

        @media (max-aspect-ratio: 16/9) {
            .slide iframe {
                width: 177.78vh;
            }
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
        }

        /* Header Navigation */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 50px;
            z-index: 100;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .logo {
			font-family: "Barlow Condensed", sans-serif;
  			font-weight: 600;
  			font-style: normal;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            letter-spacing: 2px;
            animation: fadeInLeft 1s ease-out;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
            animation: fadeInRight 1s ease-out;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        }

        .nav-menu a:hover {
            color: #fff;
            text-shadow: 0 0 20px rgba(255,255,255,0.8);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Content in Lower Right */
        .content-lower-left {
            position: absolute;
            bottom: 80px;
            left: 50px;
            max-width: 500px;
            text-align: left;
            color: white;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

        .content-lower-left h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 15px rgba(0,0,0,0.7);
            line-height: 1.2;
        }

        .content-lower-left p {
            font-size: 1.2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
            margin-bottom: 1.5rem;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.5);
            color: white;
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border-radius: 50px;
        }

        .cta-button:hover {
            background: rgba(255,255,255,0.4);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        /* Navigation Arrows */
        .nav-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            z-index: 10;
            pointer-events: none;
        }

        .nav-arrow {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 24px;
            pointer-events: all;
        }

        .nav-arrow:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        /* Dots Navigation */
        .dots-container {
            position: absolute;
            bottom: 40px;
            left: 50%;
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: white;
            width: 40px;
            border-radius: 10px;
        }

        .dot:hover {
            background: rgba(255,255,255,0.7);
        }

        /* Mute Button */
        .mute-button {
            position: absolute;
            bottom: 40px;
            right: 50px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 20px;
        }

        .mute-button:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        /* Mute Button */
        .mute-button {
            position: absolute;
            bottom: 40px;
            right: 50px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 20px;
        }

        .mute-button:hover {
            background: rgba(255,255,255,0.3);
            transform: scale(1.1);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 101;
        }
		
		
		 .newsletter-btn {
            padding: 18px 40px;
            background: #1a1a1a;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
			text-decoration: none;

        }

        .newsletter-btn:hover {
            background: #333;
            transform: scale(1.05);
        }
		
		

        /* Responsive Design */
        /* Content Section */
        .content-section {
            background: #fff;
            padding: 100px 50px;
        }

        .content-section h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .content-section .subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .image-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .image-box {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.4s ease;
           
			width: 378px;
            height: 500px;
        }

        .image-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: fit;
            transition: transform 0.6s ease;
        }

        .image-box:hover img {
            transform: scale(1.1);
        }

        .image-box-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 30px;
            color: white;
            transform: translateY(0);
            transition: transform 0.4s ease;
        }

        .image-box:hover .image-box-overlay {
            transform: translateY(-10px);
        }

        .image-box-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .image-box-overlay p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .image-box-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .image-box:hover .image-box-icon {
            background: rgba(255,255,255,0.4);
            transform: rotate(90deg);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 50px 30px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-section p {
            line-height: 1.8;
            color: #aaa;
            margin-bottom: 15px;
        }

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

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #fff;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: #666;
        }

          /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 20px 25px;
            }

            .logo img {
                height: 40px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(0,0,0,0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 100px 30px;
                gap: 30px;
                transition: right 0.4s ease;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu a {
                font-size: 1.2rem;
            }

            .content-lower-right {
                bottom: 120px;
                right: 25px;
                left: 25px;
                max-width: none;
            }

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

            .content-lower-right p {
                font-size: 1rem;
            }

            .nav-arrow {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .dots-container {
                left: 25px;
            }

            .mute-button {
                right: 25px;
            }

            .content-section {
                padding: 60px 25px;
            }

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

            .image-boxes {
                grid-template-columns: 1fr;
            }

            .footer {
                padding: 40px 25px 20px;
            }

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