  /* Main Section Container */
        .about-section {
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4rem; /* Spacing between the three content boxes */
            margin-top: 80px;
            margin-bottom: 60px;
        }
        
        /* Motto Title (Kept from previous design, centered above the boxes) */
        .motto-title {
            color: white; 
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            display: flex; 
            align-items: center;
            justify-content: center;
            gap: clamp(0.5rem, 2vw, 1.5rem);
            margin-bottom: 2rem;
            text-align: center;
            padding-top: 1rem;
            width: 90%;
            max-width: 900px;
            box-sizing: border-box;
        }
        
        /* New decorative lines CSS */
        .motto-title::before,
        .motto-title::after {
            content: '';
            flex-grow: 1; /* Allows the lines to stretch */
            height: 2px;
            background-color: white; /* Reddish line */
            max-width: 300px; /* Cap the max length of the lines */
        }
        
        /* Content Box Container (The core component you provided) */
        .about-container {
            display: flex;
            align-items: center; 
            justify-content: center;
            gap: 2.5rem;
            width: 85%; /* Slightly increased width from your original to feel more substantial */
            max-width: 1200px;
            background-color: #111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(212, 37, 37, 0.2);
            padding: 3rem;
            text-decoration: none;
            
        }

        /* Image Styling */
        .about-container img {
            width: 40%;
            min-width: 250px;
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 2px solid #d42525;
            box-shadow: 0 0 25px rgba(212, 37, 37, 0.4);
            object-fit: cover;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .about-container img:hover {
            transform: scale(1.02);
        }

        /* Content Text Wrapper */
        .about-content {
            flex: 1;
        }

        /* Title Styling */
        .about-content h2 {
            color: #fff;
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }


        .about-content a {
            text-decoration: none;
        }

        .about-content h2 .red-accent {
            color: #d42525;
        }

        .about-content h2 .white-accent {
            color: #fff; /* For the "SNPSU" part */
        }

        /* Paragraph Styling */
        .about-content p {
            color: #bdbdbb;
            margin-bottom: 1rem;
            text-align: justify;
        }

        /* === DESKTOP LAYOUTS (Image Right vs. Image Left) === */
        @media (min-width: 769px) {
            
            /* Default Layout: Image on Left, Content on Right (Sections 1 and 3) */
            .about-container {
                flex-direction: row; 
            }

            /* Alternating Layout: Content on Left, Image on Right (Section 2 - About TEDx) */
            .about-container.reverse-layout {
                flex-direction: row-reverse;
            }

            
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .about-container {
                gap: 2rem;
                padding: 2rem;
                width: 95%;
            }
            .about-container img {
                width: 45%;
                min-width: 200px;
            }
        }

        /* === MOBILE RESPONSIVE LAYOUT (Stacked) === */
        @media (max-width: 768px) {
            .about-section {
                gap: 2rem;
            }
            .about-container {
                flex-direction: column;
                align-items: center;
                padding: 1rem 1.5rem;
                width: 90%;
            }
            /* Add some horizontal padding to the motto title on mobile */
            .motto-title {
                padding: 1rem 1.5rem 2rem 1.5rem;
                font-size: 2.5rem;
                margin-top: 2rem;
                margin-bottom: 0rem;
            }

            .about-content h2 {
                text-align: center;
            }

            .about-content p {
                text-align: justify;
            }
            
            /* Remove fixed width on image, allow scaling up to 100% of container */
            .about-container img {
                width: 100%;
            }
        }

