* { 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;
}

.header h1 span { color: #fff; }

.tagline {
    color: #ffcc00;
    font-style: italic;
}

.logo img {
    height: 45px;
}

/* SECTIONS */
.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 BOX */
.intro {
    background: #1f3a63;
    color: #fff;
    margin: 0 40px;
    padding: 20px 30px;
    border-radius: 30px;
}

.intro h3 {
    color: #ffcc00;
}

.intro span {
    color: #ff8c1a;
}

/* FEATURES */
.center {
    text-align: center;
    margin: 30px 0 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0 40px;
}

.feature-card {
    background: #e9ebf7;
    border-radius: 12px;
    padding: 15px;
    font-size: 14px;
}

.feature-card h4 {
    margin-bottom: 6px;
    color: #1f3a63;
}

.icon {
    width: 36px;
    height: 36px;
    background: #3f51b5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

/* WHY CHOOSE */
.why-section {
    padding: 30px 40px;
}

.why-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.why-title h2 {
    margin: 0 15px;
}

.line {
    flex: 1;
    height: 2px;
    background: #f4b400;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.why-box {
    border: 2px solid #1f3a63;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
}

/* 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;
}
