/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    text-align: center;
}

/* Navigation Bar */
.navbar {
    background-color: #282c34;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.navbar ul li a:hover {
    color: #61dafb;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4b79a1, #283e51);
    color: white;
    padding: 100px 20px 50px;
    margin-top: 0px;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-button {
    background-color: #61dafb;
    padding: 10px 20px;
    font-size: 1em;
    color: #282c34;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.hero-button:hover {
    background-color: #21a1f1;
}

/* Container and Input Styles */
.container {
    background-color: #ffffff;
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.8em;
    color: #4b79a1;
}

.input-label {
    font-size: 1.1em;
    color: #555;
    font-weight: 500;
    margin-top: 15px;
    display: block;
    text-align: left;
}

.input-box {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* Buttons */
.convert-button, .copy-button, .download-button {
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.convert-button {
    width: 100%;
    background-color: #4b79a1;
}

.convert-button:hover {
    background-color: #3a5a7e;
}

.button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.copy-button {
    background-color: #61dafb;
    flex: 1;
}

.copy-button:hover {
    background-color: #21a1f1;
}

.download-button {
    background-color: #ffb74d;
    flex: 1;
}

.download-button:hover {
    background-color: #ffa726;
}

/* Result Box */
.result {
    background-color: #f4f4f9;
    color: #333;
    padding: 15px;
    margin-top: 20px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
    white-space: pre-wrap;
}

/* Footer */
footer {
    background-color: #282c34;
    color: white;
    padding: 15px;
    font-size: 0.9em;
    margin: 0;
    text-align: center;
}
/* Get Started Instruction Styles */
.get-started-instruction {
    background-color: #fff;
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 1.1em;
    align-items: center;
    justify-content: center;
}

.get-started-instruction h3 {
    font-size: 1.5em;
    color: #4b79a1;
    margin-bottom: 15px;
}

.get-started-instruction ol {
    text-align: left;
    margin-left: 20px;
}

.get-started-instruction ol li {
    margin: 10px 0;
}
.get-started-instruction p {
    font-weight: 800;
}
/* Accordion Section */
.code-explanation {
    background-color: #ffffff;
    padding: 30px 20px;
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}

.code-explanation h2 {
    font-size: 2em;
    color: #4b79a1;
    margin-bottom: 20px;
}

.accordion {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.accordion-button {
    background-color: #f7f7f7;
    color: #333;
    border: none;
    padding: 15px;
    font-size: 1em;
    text-align: left;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-button:hover {
    background-color: #e0e0e0;
}

.accordion-content {
    padding: 15px;
    display: none;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 25px;
}

.accordion-content p {
    margin: 0;
    font-size: 1em;
    color: #555;
}

/* Active accordion styles */
.accordion-button.active {
    background-color: #61dafb;
    color: #ffffff;
}
