/* Global Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #353535;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Main Container */
.container {
    padding: 20px;
}

/* Active Toggle Switch */
.switch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.switch-label {
    margin-left: 10px;
    font-size: 18px;
    color: #00fa9a;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #767577;
    transition: .4s;
    border-radius: 22px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00fa9a;
}

input:checked + .slider:before {
    transform: translateX(18px);
}

/* Menu */
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.menu-item {
    display: flex;
    align-items: center;
    background-color: #00321e;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    width: 80%;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.2);
}

.menu-item:hover {
    background-color: #005a3b;
}

.menu-item img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Floating Record Button */
.record-button {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #00fa9a;
    color: black;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.record-button:hover {
    background-color: #00c87a;
    transform: scale(1.1);
}

/* Active State */
body.active {
    background-color: #2a2a2a;
}

/* Header */
header {
    background-color: #00321e;
    padding: 20px;
    font-size: 24px;
}

/* Navigation */
nav {
    background-color: #222;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #00fa9a;  /* Neon Green */
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 30px;
    max-width: 800px;
    margin: auto;
}

h2 {
    border-bottom: 2px solid #00fa9a;
    padding-bottom: 5px;
    display: inline-block;
}


/* FAQ */
.faq-item {
    background-color: #005a3b;
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
}

.faq-question {
    background: none;
    border: none;
    color: #00fa9a;  /* Neon Green */
    font-size: 18px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    outline: none;
    display: flex;
    justify-content: space-between;
}

.faq-question span {
    font-size: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 10px;
}

/* Contact Section */
#contact p a {
    color: #00fa9a;
    text-decoration: none;
    font-weight: bold;
}

#contact p a:hover {
    text-decoration: underline;
}

/* Privacy Policy Link */
#privacy p a {
    color: #00fa9a;
    text-decoration: none;
    font-weight: bold;
}

#privacy p a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #222;
    padding: 15px;
    margin-top: 20px;
}

a {
    color: #00fa9a;
    text-decoration: none;
}
