/* Sanofi Color Palette */
:root {
  /* Brand Purples */
  --miracle-purple: #23004C;
  --chasing-purple: #7A00E6;
  
  /* Additional Colors */
  --support-gray: #F4F2F6;
  --support-white: #FFFFFF;
  
  /* Font Colors */
  --font-black: #000000;
  --font-white: #F5F5F5;
}

@font-face {
  font-family: 'SanofiSans';
  src: url('SanofiSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SanofiSans';
  src: url('SanofiSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SanofiSans';
  src: url('SanofiSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SanofiSans';
  src: url('SanofiSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SanofiSans';
  src: url('SanofiSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SanofiSans';
  src: url('SanofiSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

body {
  color: var(--font-black);
  font: normal 400 16px/1.6 'SanofiSans', sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.index {
  color: var(--font-black);
}

*{
  box-sizing: border-box;
}

a {
  color: var(--miracle-purple);
  outline: none;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--chasing-purple);
  text-decoration: underline;
}

a.logo {
  background: url(logo1.jpg) center top no-repeat;
  background-size: contain;
  display: block;
  margin-bottom: 20px;
  height: 50px;
  width: 130px;
}

h1 {
  color: var(--miracle-purple);
  font: normal 700 42px/1.2 'SanofiSans', sans-serif;
  padding: 0;
  margin: 0.5em 0;
}

h2 {
  color: var(--miracle-purple);
  font: normal 700 32px/1.3 'SanofiSans', sans-serif;
  margin-bottom: 20px;
  padding: 0;
}

h3 {
  color: var(--miracle-purple);
  font: normal 700 24px/1.4 'SanofiSans', sans-serif;
  margin: 1em 0 0.5em;
  padding: 0;
}

img {
  border: 0;
  display: block;
}

ol, ul {
  margin: 1em 0;
  padding: 0 0 0 1.25em;
}

p {
  margin: 1em 0;
  padding: 0;
  line-height: 1.6;
}

.contain {
  margin: 0 auto;
  width: 1200px;
}

.fill {
  min-width: 1200px;
  width: 100%;
}

.bottom {
  margin-bottom: 0;
  padding-bottom: 0;
}

.top {
  margin-top: 0;
  padding-top: 0;
}

.divider {
  background-color: var(--chasing-purple);
  height: 5px;
  width: 100%;
}

/* header */

header {display: block;}
.index header {border: none;}

header div.contain {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding: 10px 0 5px 15px;
}

#epAttention {
  padding: 10px 0;
  text-align: center;
}

.top-nav {
  align-items: flex-end;
  display: flex;
  flex-direction: column-reverse;
  width: 1054px;
}

#epLang {  
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0 15px;
}

#epLang a {
  color: var(--miracle-purple);
  font-size: 12px;
  text-decoration: none;
}

#epLang a:hover {
  color: var(--chasing-purple);
}

nav {
  display: flex;
  font: normal 400 18px 'SanofiSans', sans-serif;
  justify-content: flex-end;
  align-items: center;
}

nav a {
  color: rgb(23, 23, 23);
  display: inline-block;
  font-weight: 700;
  padding: 10px 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--chasing-purple);
  text-decoration: underline;
}

.banner {
  background: #ccc url(banner.jpg) no-repeat center top;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 50px 0 100px;
  position: relative;
}

.speakup-logo {
  display: block;
  max-width: 400px;
  height: auto;
}

.report-banner {
  background: var(--chasing-purple);
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-banner-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.report-banner h1 {
  color: var(--font-white);
  margin: 0;
  text-align: left;
  flex: 1;
}

.report-icon {
  width: 180px;
  height: 135px;
  background: url(report.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
/* Banner styles - shared structure */
.phone-banner,
.question-banner,
.faq-banner,
.follow-banner {
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-banner {
  background: var(--chasing-purple);
}

.question-banner {
  background: var(--miracle-purple);
}

.faq-banner {
  background: var(--chasing-purple);
}

.follow-banner {
  background: var(--chasing-purple);
}

.phone-banner-content,
.question-banner-content,
.faq-banner-content,
.follow-banner-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.phone-banner h1,
.question-banner h1,
.faq-banner h1,
.follow-banner h1 {
  color: var(--font-white);
  margin: 0;
  text-align: left;
  flex: 1;
}

.phone-icon {
  width: 240px;
  height: 180px;
  background: url(phone.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.question-icon,
.faq-icon {
  width: 180px;
  height: 135px;
  background: url(speakup.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.follow-icon {
  width: 180px;
  height: 135px;
  background: url(follow.png) no-repeat center;
  background-size: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

#faq a {
  color: var(--chasing-purple);
  text-decoration: underline;
}

#faq a:hover {
  color: var(--miracle-purple);
}

.buttons {
  display: flex;
  justify-content: space-evenly;
  padding: 40px 0;
}
.buttons a {
  align-items: center;
  background: var(--support-white) url() no-repeat center 8px;
  background-size: 38%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-sizing: border-box;
  border-radius: 0;
  color: var(--miracle-purple);
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  padding: 115px 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 24%;
}
.buttons a:hover,
.buttons a:focus {
  background-color: var(--support-gray);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.buttons a.report {background-image: url(report.png);}
.buttons a.phone {background-image: url(phone.png);}
.buttons a.follow {background-image: url(follow.png);}
.buttons span.title {
  display: block;
  font: normal 700 18px/2.0 'SanofiSans', sans-serif;
  text-align: center;
  width: 100%;
}
.buttons span.roll-text {
  font: normal 400 14px/1.5 'SanofiSans', sans-serif;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  color: var(--font-black);
}
/* content */

main {
  display: block;
  padding: 30px 0 70px;
}

.mainHome {
  padding: 10px 0 70px;
}

section {
  display: block;
}

section.flex {
  display: flex;
  padding: 20px 0;
}

.text-index {
  margin-top: 50px;
}

.ceo-section {
  margin-top: 50px;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.ceo-message {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
  justify-content: center;
}

.ceo-photo {
  flex-shrink: 0;
  width: 150px;
  height: auto;
  max-width: 150px;
}

.ceo-text {
  flex: 1;
  max-width: 550px;
}

.ceo-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--font-black);
  margin: 0;
}

[class^="col-"] { /* Applies to all CSS classes that start with "col-" */
  vertical-align: top;
}

.col-100 {
  display: inline-block;
  padding: 10px 25px;
  width: 100%;
}

.col-66 {
  display: inline-block;
  padding: 10px 25px;
  vertical-align: top;
  width: 66%;
}

.col-50 { /* Column-50 is technically 49% so columns do not break to a new line in all browsers */
  display: inline-block;
  padding: 10px 25px;
  width: 49%;
}

.col-33 {
  display: inline-block;
  padding: 10px 25px;
  width: 33%;
}

.col-left {
  margin-right: 2%;
  padding: 10px 25px;
  width: 60%;
}

.col-right {
  padding: 10px 25px;
  width: 38%;
}

#epEmergency {
  padding: 10px 0;
  text-align: center;
}

#epEmergency br {
  display: none;
}

#epEmergency strong {
  display: inline-block;
  margin-right: 7px;
}

#epDDN {
  font-weight: bold;
  white-space: nowrap;
}

.listor {
  list-style: none;
  margin: 1em 0;
}

/* dp and phone */

#epDataPrivacy .online, #epDataPrivacy .phone, #epDataPrivacy .output {
  display: block;
}

#epDataPrivacy ol.dropDowns {
  list-style: none;
  margin: 0;
  padding: 0;
}

#epDataPrivacy .text {
  color: var(--miracle-purple);
}

#epPhone{
  max-width: 450px;
}

select {
  font: normal 400 14px 'SanofiSans', sans-serif;
  margin: 5px 0 15px;
  min-width: 355px;
  padding: 5px;
}

button, .submit {
  background: var(--chasing-purple);
  border: none;
  border-radius: 0;
  color: var(--font-white);
  cursor: pointer;
  font: normal 700 16px/1 'SanofiSans', sans-serif;
  margin: 15px 0;
  padding: 14px 32px;
  text-decoration: none;
  text-transform: none;
  transition: background 0.3s ease;
}

button:disabled, button:disabled:hover, input.submit:disabled, input.submit:disabled:hover {
  background: var(--support-gray);
  color: #999;
  cursor: default;
}

button:hover, .submit:hover {
  color: var(--font-white);
  background: var(--miracle-purple);
}

.nowrap {
  white-space: nowrap;
}

/* issues */

#epIssues {
  width: 100%;
}

#epIssues .category {
  display: flex;
  margin-bottom: 20px;
}

#epIssues .category{
  background: var(--miracle-purple);
}


#epIssues .catdesc {
  display: none;
}

#epIssues .catname {
  color: var(--font-white);
  font: normal 700 20px 'SanofiSans', sans-serif;
  padding: 20px 20px 20px 30px;
  width: 24%;
}

#epIssues .details {
  font: normal 400 13px 'SanofiSans', sans-serif;
  position: absolute;
  right: 7px;
  text-decoration: none;
  top: 3px;
  color: var(--chasing-purple);
}

#epIssues .issue {
  margin-bottom: 10px;
  padding: 0 5px 0 10px;
  position: relative;
}

#epIssues .issue:last-of-type {
  margin-bottom: 0;
}

#epIssues .issue {
  transition: background 0.2s ease;
}

#epIssues .issue:hover {
  background: var(--support-gray);
}

#epIssues .issuebox {
  background: var(--support-white);
  padding-left: 20px;
  width: 76%;
}

#epIssues .name {
  font: normal 700 18px/1.4 'SanofiSans', sans-serif;
  padding: 5px 0;
  color: var(--miracle-purple);
}

#epIssues .desc {
  color: #666;
  font: normal 400 15px/1.6 'SanofiSans', sans-serif;
  padding: 0 60px 10px 15px;
}

input.text-input  {
  margin: 5px 0 20px;
  min-width: 300px;
  padding: 5px;
}

.follow-page section span {
  font-size: 18px;
}

/* footer */

footer {
  font-size: 14px;
  padding: 20px 0;
  background-color: #F4F2F6;
}

footer th {
  display: none;
}

footer td {
  padding: 5px 0 0 !important;
}

footer .line1 {
  float: left;
  padding-left: 10px;
}

footer .line2 {
  color: var(--font-white);
  float: right;
  padding-right: 10px;
}

footer .line2 a {}

footer .line2 a:hover {}

footer table {
  font-size: 12px;
  margin: 15px auto 0 !important;
  width: 1200px !important;
}

.center {
  text-align: center;
}

/* FAQ Page Styles */
.faq-nav {
  padding: 30px 0 20px;
}

.faq-nav h3 {
  margin: 0.5em 0;
}

.faq-nav h3 a {
  color: var(--miracle-purple);
  text-decoration: underline;
  font-size: 28px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.faq-nav h3 a:hover {
  color: var(--chasing-purple);
}

.faq-section {
  padding: 30px 40px;
  margin: 20px 0;
  border-radius: 8px;
}

.faq-section-purple {
  background: linear-gradient(135deg, rgba(122, 0, 230, 0.08) 0%, rgba(35, 0, 76, 0.08) 100%);
  border-left: 4px solid var(--chasing-purple);
}

.faq-section-white {
  background: var(--support-white);
  border-left: 4px solid var(--miracle-purple);
}

.faq-section h2 {
  color: var(--miracle-purple);
  margin-top: 0;
  padding-top: 0;
}

.faq-section p strong {
  color: var(--chasing-purple);
  font-size: 17px;
}

/* FAQ page navigation links */
.col-100 > h3 > a {
  color: #7A00E6;
  text-decoration: underline;
}