/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, rgb(
191, 245, 245
) 0%, rgb(94, 247, 247) 100%);
    color: #a1f7ac;
    line-height: 1.8;
    padding: 20px;
    font-weight: bold;
    min-height: 100vh;
}

/* Print Button */
.print-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgb(150, 31, 224) 0%, rgb(180, 61, 254) 100%);
    color: white;
    border: 3px solid white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 6px 15px rgba(150, 31, 224, 0.5);
    transition: all 0.3s ease;
}

.print-button:hover {
    background: linear-gradient(135deg, rgb(180, 61, 254) 0%, rgb(200, 91, 255) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(150, 31, 224, 0.7);
}

/* Navigation Menu */
.navigation {
    background: linear-gradient(135deg, rgba(219, 216, 171, 0.2) 0%, rgba(219, 216, 171, 0.1) 100%);
    border: 4px solid rgb(150, 31, 224);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.navigation h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#navList {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.nav-btn {
    background: linear-gradient(135deg, rgb(150, 31, 224) 0%, rgb(130, 25, 200) 100%);
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(150, 31, 224, 0.4);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: rgb(150, 31, 224);
    transform: translateX(5px);
    border-color: rgb(150, 31, 224);
    box-shadow: 0 6px 15px rgba(150, 31, 224, 0.6);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(219, 216, 171, 0.15) 0%, rgba(219, 216, 171, 0.08) 100%);
    border: 5px solid rgb(150, 31, 224);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 4px solid rgb(150, 31, 224);
    background: linear-gradient(135deg, rgba(150, 31, 224, 0.2) 0%, rgba(150, 31, 224, 0.05) 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(150, 31, 224, 0.3);
}

header h1 {
    font-size: 42px;
    font-weight: normal;
    color: #1f2121;
    margin-bottom: 15px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-size: 20px;
    font-weight: normal;
    color: #1f2121;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Content Sections */
.content-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 4px solid rgb(150, 31, 224);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 10px 25px rgba(150, 31, 224, 0.4);
    border-color: rgb(180, 61, 254);
}

.content-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #1f2121;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgb(150, 31, 224);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    background: linear-gradient(90deg, rgba(150, 31, 224, 0.2) 0%, transparent 100%);
    padding-left: 15px;
    border-radius: 5px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: normal;
    color:#1f2121;
    margin-top: 25px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    padding-left: 10px;
    border-left: 5px solid rgb(150, 31, 224);
}

.content-section p {
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #1f2121;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content-section ul, .content-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section li {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 12px;
    color: #1f2121;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.note {
    background: linear-gradient(135deg, rgba(255, 255, 100, 0.3) 0%, rgba(255, 255, 100, 0.15) 100%);
    border: 3px solid rgb(150, 31, 224);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-style: italic;
    font-weight: bold;
    color: #ffffee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 4px solid rgb(150, 31, 224);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

thead {
    background: linear-gradient(135deg, rgb(150, 31, 224) 0%, rgb(130, 25, 200) 100%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

th {
    padding: 18px;
    text-align: left;
    font-weight: bold;
    font-size: 17px;
    color: #1f2121;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

td {
    padding: 15px;
    border: 2px solid rgba(150, 31, 224, 0.4);
    font-weight: bold;
    font-size: 15px;
    color:#1f2121;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

tbody tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.12);
}

tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

tbody tr:hover {
    background: linear-gradient(90deg, rgba(150, 31, 224, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* Specific Table Styles */
.pricing-table td:nth-child(2),
.pricing-table td:nth-child(3) {
    font-size: 18px;
    color: #ffff99;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.proscons-table th:first-child {
    background: linear-gradient(135deg, rgb(40, 167, 69) 0%, rgb(30, 140, 55) 100%);
}

.proscons-table th:last-child {
    background: linear-gradient(135deg, rgb(220, 53, 69) 0%, rgb(190, 40, 55) 100%);
}

.comparison-table td:nth-child(2) {
    background: linear-gradient(135deg, rgba(150, 31, 224, 0.4) 0%, rgba(150, 31, 224, 0.2) 100%);
    font-weight: bold;
    border-left: 3px solid rgb(150, 31, 224);
    border-right: 3px solid rgb(150, 31, 224);
}

/* Flowchart Styles */
.flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 4px solid rgb(150, 31, 224);
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.flow-step {
    margin: 10px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.flow-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: rgb(31, 150, 199);
    border: 4px solid rgb(150, 31, 224);
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 300px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.flow-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(150, 31, 224, 0.5);
}

.flow-box.start {
    background: linear-gradient(135deg, rgb(40, 167, 69) 0%, rgb(30, 140, 55) 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.flow-box.end {
    background: linear-gradient(135deg, rgb(220, 53, 69) 0%, rgb(190, 40, 55) 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.flow-box.process {
    background: linear-gradient(135deg, rgb(150, 31, 224) 0%, rgb(130, 25, 200) 100%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.flow-box.decision {
    background: linear-gradient(135deg, rgb(255, 193, 7) 0%, rgb(255, 215, 50) 100%);
    color: rgb(31, 150, 199);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    min-width: 250px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 5px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.flow-arrow {
    font-size: 32px;
    font-weight: bold;
    color: rgb(150, 31, 224);
    margin: 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 2px 5px rgba(150, 31, 224, 0.5));
}

.flow-branches {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 20px 0;
}

.flow-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.flow-arrow-side {
    font-size: 18px;
    font-weight: bold;
    color: rgb(150, 31, 224);
    margin: 10px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.flow-arrow-return {
    font-size: 14px;
    font-weight: bold;
    color: rgb(150, 31, 224);
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* FAQ Styles */
.faq-container {
    margin-top: 25px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 3px solid rgb(150, 31, 224);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(150, 31, 224, 0.5);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, rgb(150, 31, 224) 0%, rgb(130, 25, 200) 100%);
    color: white;
    border: none;
    padding: 18px 25px;
    font-size: 17px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgb(180, 61, 254) 0%, rgb(160, 45, 230) 100%);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.faq-toggle {
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.faq-question.active {
    background: linear-gradient(135deg, rgb(180, 61, 254) 0%, rgb(160, 45, 230) 100%);
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    color: #ffff99;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 0 25px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
    border-top: 2px solid rgba(150, 31, 224, 0.5);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 4px solid rgb(150, 31, 224);
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(150, 31, 224, 0.15) 0%, rgba(150, 31, 224, 0.05) 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

footer p {
    margin: 10px 0;
    font-size: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Print Styles */
@media print {
    body {
        background-color: white;
        color: black;
    }
    
    .print-button, .navigation {
        display: none;
    }
    
    .container {
        border: 2px solid black;
        box-shadow: none;
    }
    
    .content-section {
        page-break-inside: avoid;
        border: 2px solid black;
    }
    
    table {
        page-break-inside: avoid;
    }
    
    .faq-answer {
        max-height: none !important;
        display: block !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    header h1 {
        font-size: 28px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
    #navList {
        grid-template-columns: 1fr;
    }
    
    .print-button {
        top: 10px;
        right: 10px;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    table {
        font-size: 12px;
    }
    
    th, td {
        padding: 10px;
    }
    
    .flow-box {
        min-width: 200px;
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: rgb(150, 31, 224);
    color: white;
}