* { 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;
}

.header h1 {
    color: #ff8c1a;
    font-size: 40px;
}

.header h1 span { color: #fff; }

.tagline {
    color: #ffcc00;
    font-style: italic;
}

.logo {
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 18px;
    text-align: center;
}

/* SECTION */
.section {
    padding: 30px 60px;
    max-width: 700px;   /* optional: limits width */
    margin: 0 auto;     /* centers the div horizontally */
   
    color: #050505; /* optional: text color */
    border-radius: 10px; /* optional: rounded corners */
}

.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 {
    font-style: italic;
    margin-top: 15px;
    font-size: 1.3rem; /* makes the text bigger */
    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;
}

.why-title span {
    font-style: italic;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0 40px;
}

.feature-card {
    background: #e9ebf7;
    border-radius: 10px;
    padding: 10px 12px;
    position: relative;
    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 */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 40px 30px;
}

.why-box {
    border: 2px solid #3f51b5;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    background: #fff;
}
/* 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-left h1 span {
    color: #ff8c1a;
}

.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-text {
    margin-bottom: 6px;
}

.qr-img {
    width: 110px;
    height: 110px;
    background: #fff;
    padding: 6px;
}

.video-link {
    margin-top: 6px;
    font-size: 12px;
}
.logo img {
    height: 80px;        /* adjust as needed */
    width: auto;
    object-fit: contain;
}
.qr img {
    height: 90px;      /* QR size */
    width: 90px;
}
.video-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.yt-icon {
    width: 18px;
    height: auto;
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;          /* reduce vertical space */
    padding: 0;              /* remove padding */
    height: auto;            /* no forced height */
}

.video-section video {
    width: 520px;            /* fixed small width */
    height: 250px;           /* FIX height */
    object-fit: cover;       /* crop nicely */
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}



.video-heading {
    text-align: center;
    margin: 30px 0 20px;
    font-size: 22px;
}

.videos-column {
    display: flex;
    flex-direction: column;
    gap: 25px;          /* space between videos */
    align-items: center;
}

/* Each video block */
.video-item {
    text-align: center;
}

/* Video size */
.video-item video {
    width: 520px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.video-item h4 {
    margin-bottom: 8px;
    font-size: 16px;
}
