/* styles.css */

body {
    font-family: 'Audiowide', Arial, sans-serif;
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #3357c0;
    color: white;
    text-align: center;
    padding: 20px;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.content {
    padding: 40px;
    text-align: center;
}

.content h2 {
    color: #3357c0;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.2em;
    color: #666;
}

.button {
    background-color: #12aef5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #0a8dc7;
}

.footer {
    background-color: #3357c0;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

a {
    color: #12aef5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.language-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.language-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    padding: 15px 25px;
    margin: 10px;
    background-color: #12aef5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.language-button img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.language-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    .language-button {
        width: 100%;
    }
}

h1 {
    margin-bottom: 20px;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #f7f9fc;
    color: #333;
    list-style: none;
    font-family: 'Audiowide', Arial, sans-serif;
    margin: 0;
}

.breadcrumb a {
    color: #3357c0;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb a.active {
    color: #12aef5;
    font-weight: bold;
}

.breadcrumb span {
    margin: 0 5px;
    color: #666;
}


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

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


.accordion-container {
    width: 100%;
    max-width: 800px;
    background-color: #f7f9fc; /* Light Grayish Background */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.accordion {
    background-color: #3357c0; /* Deep Blue Background */
    color: white; /* White text color */
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
    font-size: 18px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.accordion.active, .accordion:hover {
    background-color: #0a8dc7; /* Hover color: Darker shade of Bright Blue */
}

.panel {
    padding: 0 18px;
    background-color: #f7f9fc; /* Light Grayish Background */
    display: none;
    overflow: hidden;
    color: #333; /* Dark Gray text color */
    text-align: left;
}
.header .logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}