/* ======================================
   ARBITRATION AND CONCILIATION ACT - APPEAL
   Styling with RGB(101, 201, 150) background
   and RGB(50, 100, 55) borders
   ====================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, rgb(101, 201, 150) 0%, rgb(85, 185, 135) 100%);
    color: rgb(20, 40, 25);
    line-height: 1.8;
    padding: 20px;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgb(245, 255, 250);
    padding: 30px;
    border-radius: 15px;
    border: 5px solid rgb(50, 100, 55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========== HEADER ========== */
header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgb(101, 201, 150), rgb(75, 175, 125));
    border: 4px solid rgb(50, 100, 55);
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(50, 100, 55, 0.3);
}

header h1 {
    font-size: 2.5em;
    color: rgb(20, 50, 30);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3em;
    color: rgb(30, 60, 40);
    font-weight: bold;
    margin-top: 10px;
}

.print-btn {
    background-color: rgb(50, 100, 55);
    color: white;
    border: 3px solid rgb(30, 70, 35);
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.print-btn:hover {
    background-color: rgb(70, 130, 75);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ========== NAVIGATION ========== */
.navigation {
    background: linear-gradient(135deg, rgb(101, 201, 150), rgb(85, 185, 135));
    padding: 25px;
    border: 4px solid rgb(50, 100, 55);
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(50, 100, 55, 0.3);
}

.navigation h2 {
    color: rgb(20, 50, 30);
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.navigation button {
    background-color: rgb(50, 100, 55);
    color: white;
    border: 3px solid rgb(30, 70, 35);
    padding: 12px 20px;
    margin: 8px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.navigation button:hover {
    background-color: rgb(70, 130, 75);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* ========== SECTIONS ========== */
.section {
    background-color: rgb(101, 201, 150);
    padding: 30px;
    margin-bottom: 30px;
    border: 4px solid rgb(50, 100, 55);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(50, 100, 55, 0.2);
}

.section h2 {
    color: rgb(20, 50, 30);
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 4px solid rgb(50, 100, 55);
}

.section h3 {
    color: rgb(30, 60, 40);
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
}

.section h4 {
    color: rgb(40, 70, 45);
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.section p {
    color: rgb(25, 45, 30);
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: justify;
}

.section ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.section li {
    color: rgb(25, 45, 30);
    font-size: 1.05em;
    font-weight: bold;
    margin-bottom: 10px;
    list-style-type: disc;
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
    background-color: rgb(120, 220, 170);
    border: 3px solid rgb(50, 100, 55);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.highlight-box h3 {
    color: rgb(20, 50, 30);
    font-weight: bold;
    margin-bottom: 15px;
}

.highlight-box ul {
    margin-left: 25px;
}

.highlight-box li {
    margin-bottom: 10px;
}

/* ========== PROVISION BOX ========== */
.provision-box {
    background-color: rgb(115, 215, 165);
    border: 3px solid rgb(50, 100, 55);
    border-left: 8px solid rgb(50, 100, 55);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.provision-box h3 {
    color: rgb(20, 50, 30);
    font-weight: bold;
    margin-bottom: 12px;
}

.provision-box p {
    color: rgb(25, 45, 30);
    font-weight: bold;
    margin-bottom: 12px;
}

/* ========== ORDER CARD ========== */
.order-card {
    background-color: rgb(110, 210, 160);
    border: 3px solid rgb(50, 100, 55);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.order-card h3 {
    color: rgb(20, 50, 30);
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 15px;
    border-bottom: 3px solid rgb(50, 100, 55);
    padding-bottom: 8px;
}

/* ========== LIMITATION BOX ========== */
.limitation-box {
    background-color: rgb(115, 215, 165);
    border: 3px solid rgb(50, 100, 55);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.limitation-box h3 {
    color: rgb(20, 50, 30);
    font-weight: bold;
    margin-bottom: 15px;
}

.time-box {
    background-color: rgb(130, 230, 180);
    border: 2px solid rgb(50, 100, 55);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
}

.time-box p {
    color: rgb(20, 50, 30);
    font-weight: bold;
    font-size: 1.15em;
    margin: 5px 0;
}

/* ========== CASE CARD ========== */
.case-card {
    background-color: rgb(105, 205, 155);
    border: 4px solid rgb(50, 100, 55);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.case-card h3 {
    color: rgb(20, 50, 30);
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-decoration: underline;
}

.case-details {
    background-color: rgb(120, 220, 170);
    border: 2px solid rgb(50, 100, 55);
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.case-details p {
    margin-bottom: 12px;
}

.case-details h4 {
    color: rgb(25, 55, 35);
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

/* ========== TABLE ========== */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border: 4px solid rgb(50, 100, 55);
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgb(240, 255, 248);
}

thead {
    background: linear-gradient(135deg, rgb(50, 100, 55), rgb(70, 120, 75));
    color: white;
}

thead th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid rgb(30, 70, 35);
}

tbody tr {
    border-bottom: 2px solid rgb(50, 100, 55);
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: rgb(130, 230, 180);
}

tbody tr:nth-child(even) {
    background-color: rgb(120, 220, 170);
}

tbody tr:nth-child(odd) {
    background-color: rgb(110, 210, 160);
}

tbody td {
    padding: 15px;
    font-weight: bold;
    color: rgb(20, 45, 25);
    border: 2px solid rgb(50, 100, 55);
}

/* ========== FLOWCHART ========== */
.flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-color: rgb(115, 215, 165);
    border: 4px solid rgb(50, 100, 55);
    border-radius: 12px;
    margin: 20px 0;
}

.flow-box {
    background-color: rgb(240, 255, 248);
    border: 4px solid rgb(50, 100, 55);
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    min-width: 280px;
    text-align: center;
    font-weight: bold;
    color: rgb(20, 45, 25);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.flow-box.start {
    background: linear-gradient(135deg, rgb(120, 220, 170), rgb(100, 200, 150));
    border-color: rgb(40, 80, 45);
    border-width: 5px;
}

.flow-box.end {
    background: linear-gradient(135deg, rgb(100, 200, 150), rgb(80, 180, 130));
    border-color: rgb(40, 80, 45);
    border-width: 5px;
}

.flow-box.decision {
    background-color: rgb(255, 250, 205);
    border-color: rgb(180, 140, 50);
    border-radius: 50px;
}

.flow-box.process {
    background-color: rgb(200, 240, 220);
    border-color: rgb(50, 100, 55);
}

.flow-arrow {
    font-size: 2em;
    font-weight: bold;
    color: rgb(50, 100, 55);
    margin: 5px 0;
}

.flow-split {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.flow-path {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========== EXAMPLE BOX ========== */
.example-box {
    background-color: rgb(110, 210, 160);
    border: 3px solid rgb(50, 100, 55);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.example-box h3 {
    color: rgb(20, 50, 30);
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 15px;
    border-bottom: 3px solid rgb(50, 100, 55);
    padding-bottom: 8px;
}

.example-content {
    background-color: rgb(125, 225, 175);
    border: 2px solid rgb(50, 100, 55);
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
}

.example-content p {
    margin-bottom: 12px;
}

/* ========== Q&A SECTION ========== */
.qa-box {
    background-color: rgb(110, 210, 160);
    border: 3px solid rgb(50, 100, 55);
    border-radius: 10px;
    margin: 15px 0;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.qa-button {
    width: 100%;
    background: linear-gradient(135deg, rgb(50, 100, 55), rgb(70, 120, 75));
    color: white;
    border: none;
    padding: 18px 25px;
    text-align: left;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qa-button:hover {
    background: linear-gradient(135deg, rgb(70, 130, 75), rgb(90, 150, 95));
    transform: translateX(5px);
}

.toggle-icon {
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: rgb(125, 225, 175);
    padding: 0 25px;
}

.qa-answer.active {
    max-height: 2000px;
    padding: 25px;
    border-top: 2px solid rgb(50, 100, 55);
}

.qa-answer p {
    color: rgb(20, 45, 25);
    font-weight: bold;
    margin-bottom: 12px;
}

.qa-answer ul {
    margin-left: 30px;
    margin-top: 10px;
}

.qa-answer li {
    margin-bottom: 8px;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, rgb(101, 201, 150), rgb(85, 185, 135));
    border: 4px solid rgb(50, 100, 55);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(50, 100, 55, 0.3);
}

footer p {
    color: rgb(20, 50, 30);
    font-weight: bold;
    font-size: 1em;
    margin: 10px 0;
}

/* ========== PRINT STYLES ========== */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .container {
        border: 2px solid black;
        box-shadow: none;
    }
    
    .navigation,
    .print-btn {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
        border: 2px solid black;
        margin-bottom: 20px;
    }
    
    .qa-answer {
        max-height: none !important;
        padding: 15px !important;
    }
    
    .qa-button {
        background: #333;
        color: white;
    }
    
    .toggle-icon {
        display: none;
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .navigation button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
    
    .section h2 {
        font-size: 1.5em;
    }
    
    .flow-split {
        flex-direction: column;
    }
    
    table {
        font-size: 0.9em;
    }
    
    thead th,
    tbody td {
        padding: 10px;
    }
}

/* ========== SCROLL BEHAVIOR ========== */
html {
    scroll-behavior: smooth;
}

/* ========== STRONG TAGS ========== */
strong {
    font-weight: bold;
    color: rgb(20, 50, 30);
}