/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
    color: #334155;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pb16 {
    margin-bottom: 16px;
}
.pr6 {
    padding-right: 6px;
}
.ftw700 {
    font-weight: 700;
}
.mt100 {
    margin-top: 100px;
}
ul {
    list-style-type: none;
}
/* Container Styles */
.container {
    max-width: 800px;
    margin: 30px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Header Styles */
.header {
    background: #201F34;
    padding: 30px 0;
    text-align: center;
    color: #ffffff;
}

.header h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.welcome {
    color: #ffffff;
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.9;
}

/* Logo Styles */
.logo {
    margin-bottom: 15px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Content Styles */
.content {
    padding: 40px;
    word-break: normal;
}

/* Section Styles */
.section {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 8px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #0888FF;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.section-content {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

/* List Styles */
.info-list, ul {
    padding-left: 20px;
    margin: 15px 0;
}

.info-list li, ul li {
    margin-bottom: 10px;
    color: #475569;
}

/* Sensitive Info Styles */
.sensitive-info {
    background: #fff5f5;
    border-left: 4px solid #FF7B2E;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Contact Section Styles */
.contact-section {
    margin-top: 40px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    text-align: center;
}

.contact-email {
    display: inline-block;
    margin-top: 10px;
    color: #FF7B2E;
    text-decoration: none;
    font-weight: 500;
}

.contact-email:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background-color: #f8fafc;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #64748b;
    border-top: 1px solid #e2e8f0;
}

/* Responsive Styles */
@media screen and (max-width: 840px) {
    .container {
        margin: 15px;
        border-radius: 8px;
    }

    .content {
        padding: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-content {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .header h1 {
        font-size: 24px;
    }

    .logo span {
        font-size: 20px;
    }

    .welcome {
        font-size: 14px;
    }

    .section-content {
        font-size: 14px;
    }

    .contact-section {
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    body {
        background: #ffffff;
    }

    .container {
        margin: 0;
        box-shadow: none;
    }

    .header {
        background: #ffffff;
        color: #000000;
    }

    .logo span {
        color: #000000;
    }

    .section-title {
        color: #0888FF;
        border-bottom-color: #000000;
    }

    .sensitive-info {
        border: 1px solid #000000;
        background: none;
    }

    .contact-section {
        background: none;
        border: 1px solid #000000;
    }
}
