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

        body {
            font-family: Arial, sans-serif;
            margin-top: 62px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #fff;
        }

        .container {
            display: flex;
            height: calc(100vh - 62px);
            width: 100%;
        }

        .left-side {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .left-side h1 {
            font-size: 48px;
            font-weight: bold;
        }

        .left-side p {
            font-size: 20px;
            margin: 10px 0 20px;
            color: gray;
        }

        .order-btn {
            background-color: orange;
            color: white;
            padding: 15px 30px;
            border: none;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
        }

        .order-btn:hover {
            background-color: #e67e00;
        }

        .right-side {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            width: 50%;
            position: relative;
        }

        .highlight {
            color: orange;
        }

        .ourselves {
            background-color: #f9f9f9;
            color: white;
            padding: 50px 20px;
            text-align: center;
            /* Remove fixed height to allow rows to expand */
            /* height: calc(100vh - 62px); */
            width: 100%;
        }

        .ourselves h2 {
            font-size: 36px;
            color: black;
            margin-bottom: 20px;
        }

        .ourselves p {
            font-size: 18px;
            color: grey;
            margin-bottom: 40px;
        }

        .ourselves-columns {
            display: flex;
            justify-content: center;
            gap: 20px;            
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 40px; /* margin-bottom adds space between rows */
            align-items: stretch;
        }


        .ourselves-column {
            flex: 1;
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-decoration: none;
            color: black;
            transition: transform 0.3s ease, background 0.3s ease;
            min-height: 100%;
        }

        .ourselves-column:hover {
            transform: scale(1.05);
            background: #fffaea;
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
            border: 2px solid orange;
        }

        .ourselves-column img {
            width: 100%;
            height: 200px;
            object-fit: fill;
            margin-bottom: 15px;
            border-radius: 5px;
            display: block;
        }

        .ourselves-column h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .ourselves-column p {
            font-size: 16px;
            color: grey;
            flex-grow: 1;
        }

        .ourselves-column-header {
            width: 100%;
            max-width: 500px;
            text-align: center;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: black;
            position: absolute;
            opacity: 0;
            transform: translateX(100%);
            transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
        }

        .ourselves-column-header img {
            width: 100%;
            height: 200px;
            object-fit: fill;
            margin-bottom: 15px;
            border-radius: 5px;
            display: block;
        }

        .ourselves-column-header h3 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            margin: 5px 0;
        }

        .ourselves-column-header p {
            font-size: 16px;
            color: grey;
            flex-grow: 1;
            text-align: center;
        }

        .ourselves-column-header.active {
            opacity: 1;
            transform: translateX(0);
        }

        .ourselves-column-header.exit {
            opacity: 0;
            transform: translateX(-100%);
        }

        .ourselves-column-header:hover {
            transform: scale(1.05);
            background: #fffaea;
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
            border: 2px solid orange;
        }

    .hidden {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .visible {
        opacity: 1;
        transform: translateY(0);
    }
    @keyframes spin {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }
    .loading-container {
        position: relative;
        height: auto;
    }


@media (max-width: 900px) {
    .container {
        flex-direction: column;
        height: auto !important;
    }

    .right-side {
        display: none !important;
    }

    .left-side {
        width: 100% !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding-top: 40px;
    }

    .ourselves-columns {
        flex-direction: column;
        align-items: center;
    }

    .ourselves-column {
        width: 100%;
        max-width: 90%;
    }
}
