/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #222222;
    color: #eaeaea;
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
/*    overflow: hidden;*/
    border-top: 6px solid #e99c52;
}

/* Navbar Styles */
/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
/*    padding: 10px;*/
    background-color: #222222;
    width: 100%;
    z-index: 100;
    top: 0;
/*    position: sticky; */
    grid-row: 1; /* Navbar in the first row */
}

.logo-wrapper {
    max-width: 1140px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
/*    padding: 10px;*/
}

.logo {
    height: 150px;
    width: auto;
    margin: 10px;
}

.icon-class {
    height: 20px;
    width: 20px;
    margin-left: 10px;
    cursor: pointer;
}

/* Content Styles */
.content {
    display: flex;
    justify-content: center;
    overflow-y: auto;
    margin-top: 160px;
    height: calc(100vh - 160px);
}

.content-wrapper {
    max-width: 1140px;
    width: 100%;
    flex-grow: 1;
    margin: 0 auto;
    overflow-y: auto;
    grid-row: 2; /* Ensure content is in the second row of the grid */
    
}

/* Block Styles */
.block {
    background-color: #303030;
    border-top: 3px solid #e99c52;
    margin-bottom: 40px;
    padding: 20px;
}

.block h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #e99c52;
}

.block p {
    font-size: 16px;
    line-height: 1.6;
    color: #eaeaea;
}

/* Header Styles */
.header {
    text-align: center;
}

.header .title h1 {
    font-weight: 400;
    margin: 5px 0;
    margin-top: 10px;
    font-size: 32px;
}

.header .title h2 {
    font-weight: 300;
    margin: 12px 0;
    font-size: 24px;
    color: #eaeaea;
}

.header .tagline h2 {
    font-weight: 400;
    color: #e99c52;
    margin: 10px 0;
    font-size: 24px;
    margin-top: 70px;
}

/* Link Styles */
.legal-guide a,
.modal-content a {
    color: #e99c52;
    text-decoration: none;
    font-weight: bold;
}

.legal-guide a:hover,
.modal-content a:hover,
.expand-link:hover {
    text-decoration: underline;
}

/* Button Styles */
.button-wrap {
/*    display: flex;*/
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 40px;
    text-align: right;
}


.full-doc-statement {
    padding: 20px;
    text-align: left;
}

.button-wrap a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e99c52;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.button-wrap a:hover {
    background-color: #d88b47;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Legal Section Styles */
.legal-section {
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.legal-section:hover {
    background-color: #464646;
}

.title-wrap {
    display: flex;
    align-items: center;
    justify-content: left;
}

.title-wrap h1 {
    font-size: 24px;
    color: #e99c52;
    margin-right: 10px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-wrapper {
    max-width: 1140px;
    width: 100%;
    height: calc(100vh);
    overflow-y: auto;
    background-color: #fcf3eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 40px;
    box-sizing: border-box;
    margin-top: 0;
}

.modal-overlay.active {
    display: flex;
    position: fixed;
    overflow-y: auto;
}

/* Modal Content Styles */
.modal-content {
    padding: 20px;
    font-family: 'Roboto', Arial, sans-serif;
    color: #231304;
    line-height: 1.6;
    overflow-y: auto;
}

.modal-content h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e99c52;
}

.modal-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 0;
    color: #e99c52;
}

.modal-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 0;
    color: #e99c52;
}

.modal-content p {
    margin-top: 20px;
    font-size: 18px;
    color: #231304;
}

.modal-content ul,
.modal-content ol {
    padding-left: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-content ul li,
.modal-content ol li {
    margin-bottom: 10px;
}

.modal-content ul li strong,
.modal-content ol li strong {
    color: #e99c52;
}

.icon-wrap {
    display: flex;
    min-width: 100%;
    align-content: right;
    align-items: right;
    margin-top: 20px;
}

.close-icon {
    height: 20px;
    width: 20px;
    padding: 20px;
    top: 10px;
    right: 10px;
    cursor: pointer;
    margin-left: auto;
}

/* Legal Guide Styles */

.legal-guide {
    margin-bottom: 40px;
}
.legal-guide h2 {
        text-align: center;
}

.legal-guide ol {
    padding-left: 20px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-guide ol li {
    margin-bottom: 20px;
}

.legal-guide ul {
    padding-left: 20px;
    margin-top: 10px;
}
.no-tel {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
.legal-guide ul li {
    margin-bottom: 10px;
}

.legal-guide ol p {
    margin-top: 5px;
}

.expand-link {
    display: inline-block;
    margin-top: 10px;
    color: #e99c52;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-wrapper {
        margin-top: 150;
    }

    .logo {
        height: 50px;
        margin: 0px;
    }

    .button-wrap {
        text-align: center;
    }

    .block {
        padding: 15px;
    }

    .block h2 {
        font-size: 18px;
    }

    .block p {
        font-size: 14px;
    }

    .header .title h1 {
        font-size: 20px;
    }

    .header .title h2,
    .header .tagline h2 {
        font-size: 18px;
    }

    .title-wrap h1 {
        font-size: 16px;
    }

    .modal-wrapper {
        padding: 15px;
    }

    .modal-content h1 {
        margin-top: 0;
    }

    .modal-content ul,
    .modal-content ol {
        margin-left: 2px;
        margin-bottom: 20px;
    }
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}


.video-container {
        margin-top: 80px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

