/* ===================================
   GLOBAL STYLES - Digunakan semua halaman
   =================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section */
.section {
    margin-bottom: 45px;
}

.section-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

td {
    padding: 14px 18px;
    vertical-align: top;
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    .container {
        box-shadow: none;
    }
}

/* Mobile Responsive - Global */
@media (max-width: 767px) {
    body {
        padding: 0;
    }

    .container {
        box-shadow: none;
        border-radius: 0;
    }
}
