        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Futura PT', sans-serif;
            background: #ffffff;
            /* White background */
            color: #000000;
            /* Black text */
        }

        .about-section {
            position: relative;
            width: 100%;
            min-height: 70vh;
            background: url('../images/1.webp') no-repeat center center/cover;
            display: flex;
            align-items: center;
            padding: 6rem;
            color: #ffffff;
            /* White text for contrast on dark overlay */
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .about-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            /* Black overlay with opacity */
            z-index: 1;
        }

        .about-section>div {
            position: relative;
            z-index: 2;
        }

        .about-section h1 {
            font-size: 3rem;
            font-weight: bold;
        }

        .about-section p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-top: 1rem;
        }

        .about-content-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            padding: 0rem 5%;
            background: #ffffff;
            /* White background */
        }

        .about-content-box {
            flex: 1 1 300px;
            max-width: 430px;
            padding: 1rem;
            margin: 1rem;
        }

        .about-content-box h2 {
            color: #000000;
            /* Black text */
            border-bottom: 2px solid #000000;
            /* Black border */
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            letter-spacing: 0.1rem;
        }

        .about-content-box p {
            color: #333333;
            /* Dark gray for readability */
            font-size: 1rem;
            margin-top: 2rem;
            line-height: 1.8rem;
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 2rem;
            }

            .about-section h1 {
                font-size: 2rem;
            }

            .about-section p {
                font-size: 1rem;
            }

            .about-content-section {
                flex-direction: column;
                align-items: center;
                padding: 0 1%;
            }
        }

        /* About Us Section */
        .about-us-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 60px 20px;
            gap: 100px;
            max-width: 100vw;
            margin: auto;
            animation: fadeIn 1s ease-in-out;
        }

        .about-us-image {
            border: 4px solid #000000;
            /* Black border */
            padding: 8px;
            animation: slideInLeft 1s ease-out;
            margin-top: 2rem;
            min-height: 75vh;
        }

        .about-us-image img {
            max-width: 100%;
            max-height: 80vh;
            height: auto;
            display: block;
            margin-top: -3rem;
            margin-left: -3rem;
        }

        .about-us-text {
            max-width: 600px;
            animation: slideInRight 1s ease-out;
            margin-top: -2rem;
        }

        .about-us-text h2 {
            font-size: 32px;
            color: #000000;
            /* Black text */
            margin-bottom: 30px;
            position: relative;
        }

        .about-us-text h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: #000000;
            /* Black underline */
            margin-top: 6px;
        }

        .about-us-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #333333;
            /* Dark gray for readability */
            margin-bottom: 24px;
        }

        .highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .highlight {
            flex: 1 1 200px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333333;
            /* Dark gray */
            font-weight: 500;
            font-size: 16px;
        }

        .highlight::before {
            content: "✔️";
            color: #000000;
            /* Black checkmark */
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            .about-us-section {
                flex-direction: column;
                text-align: center;
            }

            .about-us-text {
                padding: 0 10px;
            }

            .about-us-text h2::after {
                margin: 10px auto;
            }

            .about-us-text p {
                text-align: start;
            }

            .about-us-image {
                border: 4px solid #000000;
                /* Black border */
                margin-top: 0rem;
                min-height: 40vh;
                margin-left: 1rem;
            }

            .about-us-image img {
                max-height: 100%;
                margin-top: -2rem;
                margin-left: -2rem;
            }
        }

        /* Team Section */
        .team-section {
            padding: 60px 6%;
            text-align: center;
            margin: auto;
        }

        .team-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #000000;
            /* Black text */
        }

        .team-section h2 span {
            color: #000000;
            /* Black text (previously purple) */
        }

        .team-section hr {
            width: 60px;
            border: 2px solid #000000;
            /* Black line */
            margin: 10px auto 40px;
        }

        .team-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
        }

        .team-member {
            background: #ffffff;
            /* White background */
            width: 300px;
            overflow: hidden;
            transition: transform 0.3s ease;
            animation: fadeInUp 1s ease forwards;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-member img {
            width: 100%;
            height: auto;
            display: block;
            filter: grayscale(100%);
            /* Keep grayscale for black-and-white theme */
        }

        .team-info {
            text-align: left;
        }

        .team-info h3 {
            color: #000000;
            /* Black text (previously purple) */
            font-size: 1.5em;
            font-weight: 600;
            margin-top: 1rem;
        }

        .team-info h4 {
            font-size: 20px;
            font-weight: 600;
            color: #333333;
            /* Dark gray */
            margin-top: 0.5rem;
        }

        .team-info p {
            font-size: 0.9rem;
            color: #444444;
            /* Medium gray */
            line-height: 1.8rem;
            text-align: justify;
            margin-top: 0.5rem;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(40px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .team-member {
                width: 90%;
            }
        }

        /* Work Process Section */
        .work-section {
            padding: 0px 20px;
            text-align: center;
            margin: auto;
        }

        .work-section h2 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #000000;
            /* Black text */
        }

        .work-section p {
            font-size: 16px;
            color: #555555;
            /* Medium gray */
            margin-bottom: 40px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .work-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .step {
            flex: 1 1 250px;
            max-width: 300px;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            background-color: #ffffff;
            /* White background */
            transition: transform 0.3s ease;
            animation: fadeInUp 1s ease both;
        }

        .step:hover {
            transform: translateY(-10px);
        }

        .step .circle {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }

        .step .circle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 80px;
            height: 80px;
            background: #000000;
            /* Black circle */
            border-radius: 50%;
            animation: pulse 2s infinite;
            z-index: 0;
            opacity: 0.6;
        }

        .step .circle span {
            position: relative;
            display: inline-block;
            width: 80px;
            height: 80px;
            background: #000000;
            /* Black circle */
            color: #ffffff;
            /* White text */
            font-weight: bold;
            font-size: 24px;
            line-height: 80px;
            border-radius: 50%;
            z-index: 1;
        }

        .step h3 {
            font-size: 17px;
            font-weight: 600;
            color: #333333;
            /* Dark gray */
            margin-bottom: 10px;
        }

        .step p {
            font-size: 14px;
            color: #555555;
            /* Medium gray */
            line-height: 1.6rem;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                transform: scale(1.3);
                opacity: 0.3;
            }

            100% {
                transform: scale(1);
                opacity: 0.6;
            }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .work-steps {
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
        }