       #aboutus-content {
            font-family: 'Open Sans', sans-serif;
            background: linear-gradient(135deg, #1a252f, #2a3441, #1a252f);
            color: #d0dbe3; /* Light Grayish Blue */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        #aboutus-content header {
            background-color: rgba(255, 255, 255, 0.1);
            color: #00bcd4; /* Soft Cyan */
            padding: 20px 0;
            text-align: center;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 20px;
        }
        #aboutus-content section {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 30px;
            margin: 20px;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            max-width: 1000px;
            width: 90%;
            box-sizing: border-box;
        }
        #aboutus-content h1 {
            color: #1abc9c; /* Soft Light Blue */
            font-size: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        }
        #aboutus-content h2 {
            color: #1abc9c; /* Soft Light Blue */
            font-size: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        }
        #aboutus-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #d0dbe3; /* Light Grayish Blue */
        }
        #aboutus-content a {
            color: #20c997; /* Muted Teal */
            text-decoration: none;
            font-weight: bold;
        }
        #aboutus-content a:hover {
            color: #17a589; /* Darker Muted Teal */
            text-decoration: underline;
        }
        /* Responsive Styling */
        @media screen and (max-width: 768px) {
            #aboutus-content header {
                font-size: 2rem;
            }
            #aboutus-content section {
                padding: 20px;
                margin: 15px;
            }
            #aboutus-content h1 {
                font-size: 1.6rem;
            }
            #aboutus-content h2 {
                font-size: 1.6rem;
            }
            #aboutus-content p {
                font-size: 1rem;
            }
        }
        @media screen and (max-width: 480px) {
            #aboutus-content header {
                font-size: 1.5rem;
            }
            #aboutus-content section {
                padding: 15px;
                margin: 10px;
            }
            #aboutus-content h1 {
                font-size: 1.4rem;
            }
            #aboutus-content h2 {
                font-size: 1.4rem;
            }
            #aboutus-content p {
                font-size: 0.9rem;
            }
        }