/* Home Page Specific Styles */
/* Global Styles */
.honeypot {
    display: none !important;
}

body {
    background-color: black;
    margin: 0;
    font-family: 'Century Gothic', sans-serif;
    color: #fff;
}

a {
    color: #4482cd;
    text-decoration: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}

/* Typography */
h1, h2, h3, p, .class1, .class2 {
    color: #ccc;
}

h1 { font-size: 24px; margin-bottom: 3px; }
h2, h3 { font-size: 20px; }
p { font-size: 16px; line-height: 1.6; }

/* image for tv */
.image-container {
    position: relative;
    display: inline-block; /* Added to make sure they align horizontally */
}
/*
.image-container img {
    max-width: 100%;
    height: auto;
}
*/
.image-container video {
    position: absolute;
    top: 55px;
    left: 50px;
    width: 395px; /* Adjust the width to your needs */
    height: 250px; /* Adjust the height to your needs */
    z-index:  -1;
}

/* Hero Section */
.hero {
    background-image: url('your-hero-image.jpg'); /* Add your image URL here */
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
/* Example block container styles */
/* Shared styles for block items */
.block-item {
    width: calc(33.33% - 20px); /* Adjust as needed */
    margin: 0 10px 20px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

/* Container for block items */
.block-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Container for FAQ block items */
.block-container-faq {
    width: 600px; /* Set the fixed width */
    margin: 0 auto; /* Center the container horizontally */
}

/* Additional styles for FAQ block items */
.block-item-faq {
    flex-basis: calc(33.33% - 20px); /* Adjust as needed */
    margin: 0 10px 20px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: justify;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out;
}

/* Add CSS styles for the click-to-expand list */
.faq-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.faq-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
    font-weight: bold;
}

.faq-answer {
    display: flex;
    flex-wrap: wrap;
    display: none;
}
/* Form Styles */
.form-container, .modal-content {
    /*background-color: rgba(0, 0, 0, 0.7);*/
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 600px;
    text-align: center;
    color: #fff;
}

.form-container-login{
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 600px;
    text-align: center;
    color: #fff;
}
.form-container-faq{
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 600px;
    text-align: center;
    color: #fff;
}

.login-input, .login-button, .link a, table th, table a, .submit-button {
    border-radius: 5px;
}

.login-input, .login-button, #agreement {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
}

.login-button {
    background-color: #4482cd;
    color: white;
    border: none;
    cursor: pointer;
}

#contactSubject {
    width: 310px;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}