﻿/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Layout */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sticky Header Styling */
.global-header {
    background-color: #fff;
    /*padding: 20px;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure header stays above other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Adds subtle shadow */
    /*height: 70px;*/
    padding-left: 15px;
    padding-right: 15px;
}

    /* Logo in Header */
    .global-header .logo {
        max-width: 150px;
        max-height: 50px;
    }

/* Main Content */
.global-main-contents {
    flex: 1;
    padding: 30px;
}

/* Footer Styling */
.global-footer {
    background-color: #333;
    color: white;
    padding: 10px;
    font-size: 14px;
}

.gobal-terms{
    padding-left: 40px;
    padding-right: 40px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .global-header {
        flex-direction: column;
        align-items: center;
    }

    .global-header .logo {
        max-width: 80px; /* Adjust logo size on smaller screens */
    }

    .global-footer {
        font-size: 12px;
        padding: 15px;
    }

    .global-main-contents {
        flex: 1;
        padding: 10px;
    }

    .gobal-terms {
        padding-left: 0px;
        padding-right: 0px;
    }
}
