/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Header Styling */
header {
    background: #1a1a2e;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px;
    background: #e63946;
    color: white;
}

.hero input {
    padding: 10px;
    width: 300px;
    margin: 10px;
    border: none;
    border-radius: 5px;
}

.hero button {
    padding: 10px 20px;
    background: #ffcc00;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.hero button:hover {
    background: #f4a261;
}

/* Troubleshooting & LED Code Sections */
.troubleshooting, .led-codes, .contact-form {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    border-radius: 5px;
}

.troubleshooting h2, .led-codes h2 {
    color: #1a1a2e;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background: #1a1a2e;
    color: white;
}

/* Contact Page */
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: #1a1a2e;
    color: white;
    border: none;
    margin-top: 10px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #ffcc00;
    color: black;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #1a1a2e;
    color: white;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    .hero input {
        width: 80%;
    }
}


.hidden {
    display: none;
}






/* Hide troubleshooting steps by default */
.hidden {
    display: none;
}

/* Styling for collapsible troubleshooting sections */
.toggle-section {
    background: #1a1a2e;
    color: white;
    padding: 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.toggle-section:hover {
    background: #ffcc00;
    color: black;
}

.troubleshooting-steps {
    background: #fff;
    padding: 15px;
    border-left: 5px solid #1a1a2e;
    margin-bottom: 10px;
    border-radius: 5px;
}




.led-codes {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    border-radius: 5px;
}

.led-codes h3 {
    background: #1a1a2e;
    color: white;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background: #1a1a2e;
    color: white;
}

tr:nth-child(even) {
    background: #f2f2f2;
}




.hidden {
    display: none;
}

.toggle-section {
    background: #1a1a2e;
    color: white;
    padding: 15px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.toggle-section:hover {
    background: #ffcc00;
    color: black;
}

.led-list {
    background: #fff;
    padding: 15px;
    border-left: 5px solid #1a1a2e;
    margin-bottom: 10px;
    border-radius: 5px;
}






