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

        body {
            font-family: Arial, sans-serif;
            margin-top: 62px; /* Add space for the fixed header */
        }

        /* Fix the header to the top */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000; /* Ensure the header stays above content */
            background-color: #fff; /* Adjust the header background if needed */
        }

        .container {
            display: flex;
            height: 200px; /* Account for header height */
            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;
        }

.black-btn {
    background-color: black;
    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;
}

.black-btn:hover {
    background-color: #333;
}

/* Adjust button layout to be side by side */
.right-side {
    width: 50%;
    display: flex;
    flex-direction: row; /* Align buttons in a row */
    justify-content: center;
    align-items: center;
    gap: 15px; /* Adds space between buttons */
}

        .right-side img {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

        .highlight {
            color: orange;
        }


/* Full-width Story Section */
.our-story {
    text-align: center;
    padding: 50px 20px;
    background-color: #000; /* Changed from light gray to black */
    width: 100%;
    color: #eee; /* Light text for contrast */
}

.our-story h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff; /* White title text */
}

.our-story p {
    font-size: 18px;
    color: #ccc; /* Light gray for less contrasty paragraph */
    margin-bottom: 40px;
}

.story-columns {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.story-column {
    flex: 1;
    background: #1a1a1a; /* Dark card background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.05); /* Light shadow for subtle depth */
    text-align: center;
    color: #eee;
}

.story-column img {
    display: block;
    margin: 0 auto 15px auto; /* centers the image and adds bottom margin */
    width: 80px;
    height: 80px;
}

.story-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff; /* Keep heading bright */
}

.story-column p {
    font-size: 16px;
    color: #ccc; /* Soft contrast for body text */
}

/* Translated Section - Light Theme with Blue Accent */
.translated-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f1f1f1; /* Light background */
    width: 100%;
    color: #333; /* Dark text for readability */
}

.translated-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: black; /* Deep blue title text */
}

.translated-section p {
    font-size: 18px;
    color: grey; /* Medium gray for paragraph */
    margin-bottom: 40px;
}

.translated-columns {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.translated-column {
    flex: 1;
    background: #ffffff; /* White card background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 51, 102, 0.1); /* Soft blue shadow */
    text-align: center;
    color: #333;
}

.translated-column img {
    display: block;
    margin: 0 auto 15px auto;
    width: 80px;
    height: 80px;
}

.translated-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: black; /* Bright blue heading */
}

.translated-column p {
    font-size: 16px;
    color: grey; /* Subtle gray text */
}

/* Notary Section - Light Theme */
.notary-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff; /* White background */
    width: 100%;
    color: black; /* Dark text */
}

.notary-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: black; /* Deep blue title */
}

.notary-section p {
    font-size: 18px;
    color: grey; /* Soft gray */
    margin-bottom: 40px;
}

.notary-columns {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.notary-column {
    flex: 1;
    background: #f9f9f9; /* Light card background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    text-align: center;
    color: #333;
}

.notary-column img {
    display: block;
    margin: 0 auto 15px auto;
    width: 80px;
    height: 80px;
}

.notary-column h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: black; /* Blue heading */
}

.notary-column p {
    font-size: 16px;
    color: grey; /* Soft dark text */
}


        .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: gray;
            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: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

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

        .ourselves-column p {
            font-size: 16px;
            color: grey;
            flex-grow: 1;
        }
/* Full-width Story Section */
.other {
    text-align: center;
    padding: 50px 20px;
    background-color: #f1f1f1;
    width: 100%;
}

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

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

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

.language-button:hover {
            background-color: #e67e00;
}
.cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #e7e7e7;
    width: 100%;
}

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

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

    .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: 1px;
    }

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

    .right-side {
        width: 100%; /* <-- Add this */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

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

.order-btn {
    display: block;
    margin: 20px auto;
    width: 100%;               /* Full width to allow wrapping */
    max-width: 300px;          /* Optional: limit how wide it can get */
    text-align: center;
    white-space: normal;       /* Allow line breaks */
    word-break: break-word;    /* Ensure long words break correctly */
    padding: 15px 20px;
    box-sizing: border-box;    /* Ensures padding doesn't exceed max-width */
}

    .story-columns,
    .translated-columns,
    .notary-columns,
    .ourselves-columns {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .story-column,
    .translated-column,
    .notary-column,
    .ourselves-column {
        width: 100%;
    }

    .ourselves-column {
        padding: 20px;
    }

.language-button {
    display: block;
    margin: 20px auto;
    width: 100%;               /* Full width to allow wrapping */
    max-width: 300px;          /* Optional: limit how wide it can get */
    text-align: center;
    white-space: normal;       /* Allow line breaks */
    word-break: break-word;    /* Ensure long words break correctly */
    padding: 15px 20px;
    box-sizing: border-box;    /* Ensures padding doesn't exceed max-width */
}

    .black-btn {
        width: 100%;
        text-align: center;
    }
}
