/* High Fidelity Stylesheet for PDF Conversion */

/* Attempt to use extracted/matched fonts. Actual font file paths would be needed for @font-face */
/* For now, using common fallbacks based on identified fonts */
body {
    font-family: 'Aptos', 'Segoe UI', Arial, sans-serif; /* Aptos and Segoe UI are common, Arial as fallback */
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Assuming a white background from PDF */
    color: #000000;
    font-size: 12pt; /* Common PDF font size */
}

.page-container {
    max-width: 800px; /* Approximate width of a standard PDF page content area */
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

/* Header Styles */
header {
    margin-bottom: 10px;
    text-align: left; /* Align logo to the left as seen in PDF */
    padding: 10px 0;
}

.header-ship-logo {
    max-height: 50px; /* Adjust as per PDF */
    width: auto;
}

.main-banner-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

/* Main Content Area */
main {
    padding: 0;
}

section {
    margin-bottom: 25px;
}

.title-section h1 {
    font-family: 'Aptos', 'Segoe UI', Arial, sans-serif; 
    font-weight: bold; 
    font-size: 18pt; 
    color: #000000; 
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center; 
}

.heading-icon {
    width: 24px; 
    height: 24px;
    margin-right: 10px;
    vertical-align: middle; 
}

.heading-icon-small {
    width: 18px; 
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

section h2 {
    font-family: 'Aptos', 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    font-size: 14pt;
    color: #1F4E79; 
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

section h3 {
    font-family: 'Aptos', 'Segoe UI', Arial, sans-serif;
    font-weight: bold;
    font-size: 12pt;
    color: #000000; 
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.intro-text p, .why-sasb p, .how-varuna-helps p, .business-case p, .contact-us p {
    margin-bottom: 12px;
    text-align: justify;
    font-size: 12pt;
}

.why-sasb article {
    margin-bottom: 20px;
    color: #000000;
}

/* List Styles */
ul.custom-list {
    list-style: none; 
    padding-left: 40px;
}

ul.custom-list li {
    margin-bottom: 8px;
    padding-left: 25px; 
    position: relative;
    font-size: 12pt;
}

/* Specific list icon styles */
ul.dot-list li::before { /* Standard black dot from PDF for this list */
    content: "\2022"; /* Unicode for bullet */
    color: black;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em; /* Adjust to align with text */
    position: absolute;
    left: 5px; /* Fine-tune position */
    top: 0px;
}

ul.diamond-list li::before {
    content: 11;
    display: inline-block;
    width: 16px; 
    height: 16px;
    background-image: url('images/blue_diamond_icon.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 2px; 
}

ul.green-checkmark-list li::before {
    content: 11;
    display: inline-block;
    width: 16px; 
    height: 16px;
    background-image: url('images/green_checkmark_icon.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 2px; 
}


strong {
    font-weight: bold; 
}

/* Link Styles */
a {
    color: #000000; 
    text-decoration: none; 
}

a:hover {
    text-decoration: underline;
}

.contact-us .contact-email {
    font-size: 11pt;
    font-weight: bold; 
    text-align: left; /* As per PDF contact section */
    margin-top: 15px;
}

.contact-us .contact-email a {
    color: #000000; /* Black as per PDF */
    display: inline-flex; /* Align icon and text */
    align-items: center;
}

.inline-mail-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    vertical-align: middle;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 15px;
    background: #f0f0f0; 
    color: #555555;
    margin-top: 30px;
    font-size: 9pt;
    border-top: 1px solid #dddddd;
}

footer p {
    margin: 0 0 5px 0;
}

/* Font face rules would go here if font files were extracted and available */

/* Responsive Design Adjustments */
@media(max-width: 768px) {
    .page-container {
        width: 95%;
        margin: 10px auto;
        padding: 15px;
    }

    .title-section h1 {
        font-size: 16pt;
    }

    section h2 {
        font-size: 13pt;
    }

    section h3 {
        font-size: 11pt;
    }

    .intro-text p, .why-sasb p, .how-varuna-helps p, .business-case p, .contact-us p {
        font-size: 9.5pt;
    }
}
.bold-text {
  font-weight: bold;
}
.diamond-bullet-list {
  list-style: none;
  padding-left: 40px;
}

.diamond-bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-weight: 600; /* Bold text for first part */
  font-size: 16px;
}

.diamond-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #1f75cc; /* The bright blue color */
  transform: rotate(45deg);
  border-radius: 2px;
}
.diamond-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #1f75cc; /* bright blue */
  transform: rotate(45deg);
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}


