* {
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            color: #000;
            overflow-x: hidden;
        }

        section {
            padding: 60px 20px;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 40px;
            min-height: 33vh;
        }

        /* --- Logo Styling --- */
        .logo-box {
            background-color: white;
            padding: 20px 40px;
            text-align: left;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            width: fit-content;
        }

        .logo-text {
            font-family: 'Pacifico', cursive;
            font-size: clamp(2.5rem, 8vw, 3.8rem);
            margin: 0;
            line-height: 1.1;
            /* Removed Boldness */
            font-weight: 400; 
        }

        .ocean {
            color: #000;
            display: block;
            font-weight: 400; /* Ensures no bolding */
        }

        .sight {
            color: #3f48cc;
            display: block;
            margin-top: -10px;
            padding-left: 30px;
            font-weight: 400; /* Ensures no bolding */
        }

        /* --- Section Backgrounds --- */
        .about-section { background-color: #a2f2f2; }
        .founders-section { background-color: #d1f7ff; }
        .mission-section { 
            background-color: #a9d9f5; 
            flex-direction: column;
            text-align: center;
        }

        /* --- Content Styling --- */
        .content-box {
            flex: 1;
            min-width: 300px;
            max-width: 700px;
        }

        h2 {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            margin-bottom: 15px;
            font-weight: 600; /* Headings still need a little weight for hierarchy */
        }

        p {
            font-size: 1.1rem;
            margin: 0;
            font-weight: 400;
        }

        .SuperTeam-img {
            width: 100%;
            max-width: 380px;
            height: auto;
            border-radius: 20px;
            background-color: white;
            padding: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            display: block;
        }

        /* --- Mobile Specific Tweaks --- */
        @media (max-width: 768px) {
            section {
                flex-direction: column;
                text-align: center;
                padding: 50px 25px;
            }

            .logo-box {
                margin: 0 auto;
                text-align: center;
            }

            .sight {
                padding-left: 0;
            }

            .content-box {
                min-width: 100%;
            }

            .founders-section {
                flex-direction: column-reverse;
            }
        }