/* General Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, rgb(31, 150, 199), rgb(20, 100, 150), rgb(150, 31, 224));
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.8;
    font-weight: bold;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgb(255, 87, 34), rgb(255, 152, 0), rgb(255, 193, 7));
    border: 6px solid rgb(244, 67, 54);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.5);
}

header h1 {
    font-size: 3em;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

header p {
    font-size: 1.4em;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Print Button */
.print-btn {
    background: linear-gradient(135deg, rgb(156, 39, 176), rgb(233, 30, 99));
    color: #ffffff;
    border: 3px solid rgb(255, 255, 255);
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.5);
}

.print-btn:hover {
    background: linear-gradient(135deg, rgb(233, 30, 99), rgb(156, 39, 176));
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.6);
}

/* Table of Contents */
.table-of-contents {
    background: linear-gradient(135deg, rgb(0, 150, 136), rgb(0, 188, 212));
    padding: 30px;
    border: 5px solid rgb(0, 229, 255);
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.5);
}

.table-of-contents h2 {
    font-size: 2em;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin: 12px 0;
}

.table-of-contents button {
    width: 100%;
    background: linear-gradient(135deg, rgb(0, 188, 212), rgb(0, 150, 136));
    color: #ffffff;
    border: 3px solid rgb(255, 255, 255);
    padding: 15px 20px;
    font-size: 1.15em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.table-of-contents button:hover {
    background: linear-gradient(135deg, rgb(255, 193, 7), rgb(255, 152, 0));
    color: rgb(33, 33, 33);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
}

/* Section Styling */
.section {
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.3), rgba(63, 81, 181, 0.3));
    padding: 35px;
    margin-bottom: 30px;
    border: 5px solid rgb(103, 58, 183);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(103, 58, 183, 0.4);
}

/* Different colors for each section */
#intro {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.3), rgba(233, 30, 99, 0.3));
    border: 5px solid rgb(244, 67, 54);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.4);
}

#features {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(139, 195, 74, 0.3));
    border: 5px solid rgb(76, 175, 80);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

#pricing {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.3), rgba(255, 193, 7, 0.3));
    border: 5px solid rgb(255, 152, 0);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

#howto {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.3), rgba(0, 150, 136, 0.3));
    border: 5px solid rgb(0, 188, 212);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
}

#benefits {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.3), rgba(103, 58, 183, 0.3));
    border: 5px solid rgb(156, 39, 176);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.4);
}

#comparison {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(3, 169, 244, 0.3));
    border: 5px solid rgb(33, 150, 243);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

#workflow {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.3), rgba(255, 152, 0, 0.3));
    border: 5px solid rgb(255, 87, 34);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

#faq {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.3), rgba(244, 67, 54, 0.3));
    border: 5px solid rgb(233, 30, 99);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

.section h2 {
    font-size: 2.2em;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    border-bottom: 4px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 15px;
}

.section h3 {
    font-size: 1.6em;
    font-weight: bold;
    color: rgb(255, 235, 59);
    margin: 20px 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section p {
    font-size: 1.15em;
    font-weight: bold;
    margin: 15px 0;
    line-height: 1.9;
    color: #ffffff;
}

.section ul {
    margin: 15px 0 15px 30px;
    font-weight: bold;
}

.section li {
    margin: 12px 0;
    font-size: 1.1em;
    line-height: 1.8;
    color: #ffffff;
}

.section li strong {
    color: rgb(255, 235, 59);
    font-weight: bold;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 20px;
    border: 4px solid rgb(255, 193, 7);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:nth-child(1) {
    border: 4px solid rgb(244, 67, 54);
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(244, 67, 54, 0.1));
}

.feature-item:nth-child(2) {
    border: 4px solid rgb(33, 150, 243);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.1));
}

.feature-item:nth-child(3) {
    border: 4px solid rgb(76, 175, 80);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
}

.feature-item:nth-child(4) {
    border: 4px solid rgb(255, 152, 0);
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
}

.feature-item:nth-child(5) {
    border: 4px solid rgb(156, 39, 176);
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.1));
}

.feature-item:nth-child(6) {
    border: 4px solid rgb(0, 188, 212);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 188, 212, 0.1));
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.feature-item h3 {
    font-size: 1.4em;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Steps */
.steps {
    margin-top: 20px;
}

.step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 20px;
    margin: 15px 0;
    border: 4px solid rgb(0, 188, 212);
    border-radius: 10px;
    border-left: 10px solid rgb(0, 188, 212);
}

.step:nth-child(1) {
    border: 4px solid rgb(244, 67, 54);
    border-left: 10px solid rgb(244, 67, 54);
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(244, 67, 54, 0.1));
}

.step:nth-child(2) {
    border: 4px solid rgb(233, 30, 99);
    border-left: 10px solid rgb(233, 30, 99);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(233, 30, 99, 0.1));
}

.step:nth-child(3) {
    border: 4px solid rgb(156, 39, 176);
    border-left: 10px solid rgb(156, 39, 176);
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.1));
}

.step:nth-child(4) {
    border: 4px solid rgb(33, 150, 243);
    border-left: 10px solid rgb(33, 150, 243);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.1));
}

.step:nth-child(5) {
    border: 4px solid rgb(0, 188, 212);
    border-left: 10px solid rgb(0, 188, 212);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 188, 212, 0.1));
}

.step:nth-child(6) {
    border: 4px solid rgb(76, 175, 80);
    border-left: 10px solid rgb(76, 175, 80);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
}

.step:nth-child(7) {
    border: 4px solid rgb(255, 193, 7);
    border-left: 10px solid rgb(255, 193, 7);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
}

.step h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Toggle Buttons */
.toggle-btn {
    background: linear-gradient(135deg, rgb(103, 58, 183), rgb(63, 81, 181));
    color: #ffffff;
    border: 3px solid rgb(255, 255, 255);
    padding: 10px 25px;
    font-size: 1.05em;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin: 15px 0;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(103, 58, 183, 0.4);
}

.toggle-btn:hover {
    background: linear-gradient(135deg, rgb(255, 193, 7), rgb(255, 152, 0));
    color: rgb(33, 33, 33);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.5);
}

/* Explanation Boxes */
.explanation {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.4), rgba(103, 58, 183, 0.4));
    padding: 20px;
    margin-top: 15px;
    border: 4px solid rgb(121, 85, 72);
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(121, 85, 72, 0.5);
}

.explanation.hidden {
    display: none;
    opacity: 0;
}

.explanation h3 {
    font-size: 1.4em;
    font-weight: bold;
    color: rgb(255, 235, 59);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.explanation p {
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1.8;
    color: rgb(255, 255, 255);
}

.explanation ul {
    margin-left: 25px;
}

.explanation li {
    margin: 10px 0;
    font-weight: bold;
    color: rgb(255, 255, 255);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border: 5px solid rgb(255, 87, 34);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.pricing-table {
    border: 5px solid rgb(255, 193, 7);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.benefits-table {
    border: 5px solid rgb(156, 39, 176);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.4);
}

.comparison-table {
    border: 5px solid rgb(33, 150, 243);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}

thead {
    background: linear-gradient(135deg, rgb(255, 87, 34), rgb(244, 67, 54));
}

.pricing-table thead {
    background: linear-gradient(135deg, rgb(255, 193, 7), rgb(255, 152, 0));
}

.benefits-table thead {
    background: linear-gradient(135deg, rgb(156, 39, 176), rgb(103, 58, 183));
}

.comparison-table thead {
    background: linear-gradient(135deg, rgb(33, 150, 243), rgb(3, 169, 244));
}

thead th {
    padding: 18px;
    text-align: left;
    font-weight: bold;
    font-size: 1.2em;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.6);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

tbody tr {
    border-bottom: 3px solid rgba(255, 87, 34, 0.5);
    transition: background-color 0.3s ease;
}

.pricing-table tbody tr {
    border-bottom: 3px solid rgba(255, 193, 7, 0.5);
}

.benefits-table tbody tr {
    border-bottom: 3px solid rgba(156, 39, 176, 0.5);
}

.comparison-table tbody tr {
    border-bottom: 3px solid rgba(33, 150, 243, 0.5);
}

tbody tr:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
}

tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.1);
}

tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.05);
}

tbody td {
    padding: 15px;
    font-weight: bold;
    font-size: 1.1em;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

tbody td strong {
    color: rgb(255, 235, 59);
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Flowchart Styling */
.flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.3), rgba(3, 169, 244, 0.3));
    border: 5px solid rgb(0, 229, 255);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.5);
}

.flow-box {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.4), rgba(103, 58, 183, 0.4));
    border: 4px solid rgb(103, 58, 183);
    padding: 20px 30px;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    min-width: 300px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(103, 58, 183, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.start-box {
    background: linear-gradient(135deg, rgb(76, 175, 80), rgb(139, 195, 74));
    border: 4px solid rgb(205, 220, 57);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.5);
}

.end-box {
    background: linear-gradient(135deg, rgb(244, 67, 54), rgb(233, 30, 99));
    border: 4px solid rgb(255, 87, 34);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.5);
}

.decision-box {
    background: linear-gradient(135deg, rgb(255, 193, 7), rgb(255, 152, 0));
    border: 4px solid rgb(255, 235, 59);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.5);
    color: rgb(33, 33, 33);
}

.flow-arrow {
    font-size: 2.5em;
    font-weight: bold;
    color: rgb(255, 235, 59);
    margin: 5px 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.flow-split {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: 20px 0;
}

.flow-path {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-arrow-side {
    font-size: 1.8em;
    font-weight: bold;
    color: rgb(0, 255, 255);
    margin: 10px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.flow-arrow-back {
    font-size: 2.5em;
    font-weight: bold;
    color: rgb(255, 235, 59);
    margin: 10px 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.flow-merge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

/* FAQ List */
.faq-list {
    margin-top: 20px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    padding: 20px;
    margin: 15px 0;
    border: 4px solid rgb(233, 30, 99);
    border-radius: 10px;
    border-left: 10px solid rgb(233, 30, 99);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.faq-item:nth-child(1) {
    border: 4px solid rgb(244, 67, 54);
    border-left: 10px solid rgb(244, 67, 54);
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(244, 67, 54, 0.1));
}

.faq-item:nth-child(2) {
    border: 4px solid rgb(233, 30, 99);
    border-left: 10px solid rgb(233, 30, 99);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(233, 30, 99, 0.1));
}

.faq-item:nth-child(3) {
    border: 4px solid rgb(156, 39, 176);
    border-left: 10px solid rgb(156, 39, 176);
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.1));
}

.faq-item:nth-child(4) {
    border: 4px solid rgb(103, 58, 183);
    border-left: 10px solid rgb(103, 58, 183);
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.2), rgba(103, 58, 183, 0.1));
}

.faq-item:nth-child(5) {
    border: 4px solid rgb(33, 150, 243);
    border-left: 10px solid rgb(33, 150, 243);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.1));
}

.faq-item:nth-child(6) {
    border: 4px solid rgb(0, 188, 212);
    border-left: 10px solid rgb(0, 188, 212);
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 188, 212, 0.1));
}

.faq-item:nth-child(7) {
    border: 4px solid rgb(76, 175, 80);
    border-left: 10px solid rgb(76, 175, 80);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
}

.faq-item:nth-child(8) {
    border: 4px solid rgb(139, 195, 74);
    border-left: 10px solid rgb(139, 195, 74);
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.2), rgba(139, 195, 74, 0.1));
}

.faq-item:nth-child(9) {
    border: 4px solid rgb(255, 193, 7);
    border-left: 10px solid rgb(255, 193, 7);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
}

.faq-item:nth-child(10) {
    border: 4px solid rgb(255, 87, 34);
    border-left: 10px solid rgb(255, 87, 34);
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.1));
}

.faq-item h3 {
    font-size: 1.4em;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgb(63, 81, 181), rgb(103, 58, 183));
    border: 5px solid rgb(156, 39, 176);
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(103, 58, 183, 0.5);
}

footer h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: rgb(255, 235, 59);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

footer p {
    font-size: 1.1em;
    font-weight: bold;
    margin: 12px 0;
    color: #ffffff;
}

/* Print Media Query */
@media print {
    body {
        background-color: white;
        color: black;
    }
    
    .print-btn {
        display: none;
    }
    
    .toggle-btn {
        display: none;
    }
    
    .explanation {
        display: block !important;
        opacity: 1 !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .section h2 {
        font-size: 1.6em;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .flow-split {
        flex-direction: column;
        gap: 20px;
    }
    
    table {
        font-size: 0.9em;
    }
    
    thead th,
    tbody td {
        padding: 10px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for sections */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-in-out;
}