* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #e6e6e6;
    font-family: Arial, Helvetica, sans-serif;
}

.page {
    width: 950px;
    margin: 20px auto;
    background: #fff;
}

/* HEADER */
.header {
    background: #1f3a63;
    color: #fff;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    color: #ff8c1a;
    font-size: 40px;
}

.tagline {
    color: #ffcc00;
    font-style: italic;
}

/* LOGO FIX */
.logo {
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

/* SECTION */
.section {
    padding: 30px 60px;
}

.section h2 {
    margin-bottom: 15px;
}

/* CHECKLIST */
.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.italic {
    margin-top: 10px;
    font-style: italic;
    text-decoration: underline;
}

/* INTRO */
.intro {
    background: #1f3a63;
    color: #fff;
    margin: 0 40px;
    padding: 20px 30px;
    border-radius: 30px;
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    font-size: 22px;
    margin: 35px 0 20px;
    font-weight: bold;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0 40px;
}

.feature-card {
    background: #e9ebf7;
    border-radius: 12px;
    padding: 15px 18px;
    font-size: 14px;
}

.feature-card h4 {
    margin: 5px 0 8px;
    font-size: 15px;
    font-weight: bold;
}

.feature-card ul {
    margin-left: 18px;
}

.feature-card li {
    margin-bottom: 5px;
}

/* ICON */
.icon {
    width: 36px;
    height: 36px;
    background: #3f51b5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 6px;
}

/* WHY CHOOSE SECTION */
.why-wrap {
    padding: 35px 50px;
    background: #fff;
}

.why-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.why-heading h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 14px;
}

.why-heading em {
    font-style: italic;
}

.why-line {
    flex: 1;
    height: 2px;
    background: #f4b400;
}

/* WHY GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
}

.why-item {
    border: 2px solid #1f3a63;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    background: #fff;
}

/* FOOTER */
.pdf-footer {
    background: #1f3a63;
    color: #fff;
    padding: 30px 45px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.footer-tagline {
    color: #ff8c1a;
    font-weight: bold;
    margin-bottom: 14px;
}

.footer-item {
    font-size: 14px;
    margin-bottom: 6px;
}

/* RIGHT QR SECTION */
.footer-right {
    text-align: center;
    font-size: 13px;
}

.qr-img {
    width: 110px;
    height: 110px;
    background: #fff;
    padding: 6px;
}
