/*---------------------------------------------------------
  Axion Pulse Yachting - style.css
  Creative Artistic Nautical Theme
  CRITICAL: FLEXBOX ONLY, NO GRID/COLUMN/ABSOLUTE for content
---------------------------------------------------------*/

/* CSS RESET & NORMALIZATION */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 16px;
}
body {
  background-color: #F4F8FB;
  color: #12253A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2C7A8A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #d94168;
  outline: none;
}
strong, b {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 0.4em;
  color: #12253A;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.6rem;
  font-weight: 800;
  text-shadow: 1px 1px 0 #ffffff66;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
blockquote {
  margin: 0 0 1em 0;
  padding: 16px 30px;
  border-left: 5px solid #2C7A8A;
  background: #fff;
  font-style: italic;
  color: #16456F;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 #2c7a8a17;
}
cite {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C7A8A;
  font-size: 1rem;
  font-style: normal;
  margin-top: 5px;
  display: block;
  letter-spacing: 0.1em;
}
p {
  margin-bottom: 1em;
}

/*------------------------
  BRAND COLORS & FONTS
-------------------------*/
:root {
  --primary: #12253A;
  --secondary: #2C7A8A;
  --accent: #F4F8FB;
  --creative-one: #E2665A;   /* coral artistic accent*/
  --creative-two: #F6C62C;   /* gold yellow for highlights*/
  --creative-three: #32A5E7; /* aquatic blue for contrasts*/
  --creative-bg-pink: #FCE9F1;
  --creative-bg-blue: #E6F6FA;
  --creative-border: #ecd8ff;
  --shadow-main: 0 2px 14px 0 #16315a18;
  --radius-main: 22px;
}

/*-----------------------------
  CONTAINER, SECTION, WRAPPERS
------------------------------*/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--creative-bg-blue);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  max-width: 920px;
  margin: 0 auto;
}

/*------------------------
   HEADER & NAVIGATION
-------------------------*/
header {
  background: linear-gradient(90deg, #F4F8FB 0%, #E6F6FA 60%, #FCE9F1 100%);
  box-shadow: var(--shadow-main);
  border-bottom: 2px solid var(--creative-border);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
header img {
  max-height: 48px;
  margin-right: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  border-bottom: 2px solid var(--secondary);
  color: var(--secondary);
}
.cta-btn {
  background: linear-gradient(80deg, var(--secondary) 64%, var(--creative-one) 100%);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 28px;
  margin-left: 20px;
  box-shadow: 0 6px 16px 0 #2c7a8a2c;
  cursor: pointer;
  transition: background 0.25s, transform 0.18s, box-shadow 0.28s;
  outline: none;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(83deg, #E2665A 0%, #2C7A8A 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 26px 0 #12253a10;
}

/*------------------------
    MOBILE NAVIGATION
-------------------------*/
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
  margin-left: 16px;
  z-index: 1103;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--creative-one);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #F4F8FB 60%, #F6C62C11 100%);
  box-shadow: 0 2px 34px #16315a30;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  padding-left: 5vw;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.87,-0.41,0,1.31), opacity 0.3s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  border: none;
  font-size: 2.2rem;
  color: var(--secondary);
  align-self: flex-end;
  margin: 16px 36px 16px 0;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 10px 0 #2c7a8a1b;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #eee;
  color: var(--creative-one);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 90vw;
  margin-top: 25px;
}
.mobile-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--primary);
  font-size: 1.2rem;
  border-bottom: 1px solid var(--creative-bg-blue);
  padding: 14px 0 8px 0;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.18s, border-color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-bottom-color: var(--creative-one);
}

/*------------------------
  HERO BANNERS
-------------------------*/
.hero {
  background: linear-gradient(90deg, var(--creative-bg-pink) 0%, var(--creative-bg-blue) 70%);
  padding: 54px 0 54px 0;
  border-bottom: 2px solid var(--creative-two);
  border-radius: 0 0 var(--radius-main) var(--radius-main);
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--primary);
  text-shadow: 1px 3px 10px #f4f8fb44;
}
.hero p {
  font-size: 1.25rem;
  color: #235180;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 8px;
}

/*---------------------------
   FEATURES & CARDS LAYOUT
----------------------------*/
.features, .service-list, .faqs, .about-home, .distinctions, .about-quality, .advantages, .method-materials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
}
.features h2, .services h2 {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 12px;
}
.features ul, .team ul, .distinctions ul, .about-quality ul, .advantages ul, .helpful-tips ul, .why-choose ul, .service-highlights ul{
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.features ul li, .about-quality ul li, .advantages ul li, .distinctions ul li, .helpful-tips ul li, .why-choose ul li, .service-highlights ul li {
  position: relative;
  padding-left: 32px;
  font-size: 1.1rem;
  color: var(--primary);
}
.features ul li:before, .about-quality ul li:before, .advantages ul li:before, .distinctions ul li:before, .why-choose ul li:before, .service-highlights ul li:before{
  content: "★";
  color: var(--secondary);
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: 0.1em;
  text-shadow: 0 2px 6px #2c7a8a25;
}

/*-- CARD/LIST FLEX LAYOUTS --*/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  justify-content: space-between;
}
.service-list > div {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 360px;
  background: var(--creative-bg-blue);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 18px 0 #12253a15;
  padding: 28px 20px 22px 24px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-height: 244px;
  border-left: 5px solid var(--creative-one);
  transition: transform 0.17s cubic-bezier(.77,-0.37,0,1.22), box-shadow 0.18s;
}
.service-list > div:hover {
  transform: translateY(-8px) scale(1.024) rotate(-1deg);
  box-shadow: 0 6px 32px 0 #2c7a8a36;
  background: #fff;
  border-left: 5px solid var(--creative-two);
}
.service-list h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-list strong {
  display: block;
  margin-top: 18px;
  color: var(--creative-one);
  font-weight: 700;
  font-size: 1.08rem;
}

/*-- CARDS & FLEX WRAPPERS PATTERN --*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  max-width: 360px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 22px 0 #2C7A8A1a;
  transform: translateY(-4px) scale(1.018);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/*------------------------
   TESTIMONIALS SECTIONS
-------------------------*/
.testimonials, .testimonial-card {
  background: var(--creative-bg-pink);
}
.testimonials .content-wrapper > h2 {
  color: var(--creative-one);
  font-size: 2rem;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px 0 #2c7a8a23;
  margin-bottom: 20px;
  border-left: 4px solid var(--creative-three);
  max-width: 670px;
  flex-direction: row;
  color: #0d1d32;
  font-size: 1.08rem;
  transition: border-color 0.18s, box-shadow 0.17s;
}
.testimonial-card:hover {
  border-left: 4px solid var(--creative-one);
  box-shadow: 0 6px 30px #2c7a8a22;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  box-shadow: none;
  color: #16456F;
  font-style: italic;
  padding: 0 12px 0 0;
}
.testimonial-card cite {
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
  margin-top: 0;
}

/*-------------------------
   CONTACT & CTA SECTIONS
--------------------------*/
.contact, .contact-details, .cta, .about-home {
  background: var(--creative-bg-blue);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  margin-bottom: 44px;
  padding: 36px 20px;
}
.contact h2, .cta h2 {
  color: var(--creative-three);
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.office-details, .contact-info, .address-map {
  font-size: 1rem;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  box-shadow: 0 1px 3px #2c7a8a0a;
}
.office-details p, .contact-info p, .address-map p {
  margin-bottom: 2px;
}

/*----------------------
   FOOTER
-----------------------*/
footer {
  background: linear-gradient(90deg,#12253A11 20%, #2C7A8A19 100%);
  border-top: 2px solid var(--creative-border);
  padding: 28px 0 12px 0;
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: #12253A;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 10vw;
  justify-content: space-between;
  align-items: flex-start;
}
footer nav {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  font-size: 1rem;
  opacity: 0.89;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.19s, opacity 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--creative-one);
  border-bottom: 2px solid var(--creative-two);
  opacity: 1;
}
.footer-contact, .footer-legal {
  flex: 1 1 220px;
  color: var(--primary);
}
.footer-contact p {
  font-size: 0.98rem;
  margin-bottom: 5px;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.96rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #2C7A8A;
}
.footer-legal a:hover {
  color: var(--creative-one);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1px 2px #2c7a8a21);
  transition: filter 0.2s;
  cursor: pointer;
}
.footer-social img:hover {
  filter: brightness(1.25) drop-shadow(0 4px 10px #f6c62c98);
}

/*-------------------------
     COOKIE CONSENT BANNER
--------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe8;
  color: #12253A;
  padding: 34px 22px 24px 22px;
  box-shadow: 0 -4px 32px #12253a24;
  border-top: 2px solid var(--creative-two);
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 2000;
  justify-content: space-between;
  gap: 24px;
  font-size: 1.07rem;
  animation: cookie-banner-slidein 0.7s cubic-bezier(.77,-0.37,0,1.22);
}
@keyframes cookie-banner-slidein {
  0% { transform: translateY(120px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 11px 18px;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 8px #2c7a8a19;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.19s, color 0.19s, box-shadow 0.2s, transform 0.13s;
  letter-spacing: 0.03em;
}
.cookie-banner .accept-btn {
  background: linear-gradient(93deg,#2C7A8A 66%,#32A5E7 100%);
  color: #fff;
}
.cookie-banner .accept-btn:hover {
  background: linear-gradient(93deg,#E2665A 0%,#2C7A8A 100%);
  color: #fff;
  transform: scale(1.03);
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #2C7A8A;
  border: 1.5px solid #2C7A8A;
}
.cookie-banner .reject-btn:hover {
  background: #FCE9F1;
  color: #E2665A;
}
.cookie-banner .settings-btn {
  background: #F6C62C;
  color: #fff;
  margin-left: 4px;
}
.cookie-banner .settings-btn:hover {
  background: #2C7A8A;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #12253a40;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fadein 0.28s cubic-bezier(.77,-0.37,0,1.22);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 94vw;
  width: 420px;
  padding: 36px 24px 26px 24px;
  box-shadow: 0 6px 48px #2c7a8a29;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
}
.cookie-modal h2 {
  color: var(--creative-three);
  font-size: 1.2rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #f4f4f4;
  position: relative;
  margin-right: 2px;
  border: 1px solid #e2e2ea;
  appearance: none;
  outline: none;
  transition: background 0.16s, border 0.19s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: linear-gradient(93deg,#2C7A8A 66%,#32A5E7 100%);
  border-color: #32A5E7;
}
.cookie-modal .cookie-toggle::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 3px #2c7a8a24;
  transition: left 0.20s cubic-bezier(.60,.33,.29,1.16);
}
.cookie-modal .cookie-toggle:checked::after {
  left: 18px;
}
.cookie-modal .save-btn {
  background: linear-gradient(90deg,#2C7A8A,#32A5E7);
  color: #fff;
  font-weight: 700;
}
.cookie-modal .save-btn:hover { background: #E2665A; }
.cookie-modal .close-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  background: #f4f4f4;
  border-radius: 13px;
  border: none;
  font-size: 1.2rem;
  color: #2C7A8A;
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .close-btn:hover {
  background: #F6C62C;
  color: #fff;
}

/*---------------------------
  ARTISTIC DECORATIVE EFFECTS
----------------------------*/
.section {
  position: relative;
  overflow: hidden;
}
.section:before, .section:after {
  content: "";
  position: absolute;
  border-radius: 40% 60% 65% 35%/70% 30% 70% 30%;
  z-index: 0;
  opacity: 0.11;
}
.section:before {
  width: 120px; height: 120px;
  left: 2%; top: -36px;
  background: linear-gradient(45deg,var(--creative-two),var(--creative-one) 70%);
  filter: blur(2px);
}
.section:after {
  width: 140px; height: 86px;
  right: -16px; bottom: -32px;
  background: linear-gradient(90deg,var(--creative-one),var(--creative-three));
  filter: blur(4px);
}

/*---------------------
  RESPONSIVE DESIGN
----------------------*/
@media (max-width: 1024px) {
  .container {
    max-width: 90vw;
    padding: 0 10px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 6px;
  }
  header img {
    max-height: 40px;
  }
  .service-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .hero{ padding: 32px 0; }
  .hero .container{
    gap: 16px;
  }
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .features, .service-list, .faqs, .about-home, .distinctions, .about-quality, .advantages, .method-materials,
  .section, .testimonials, .contact, .cta, .contact-details {
    padding: 22px 0.8em;
    margin-bottom: 36px;
  }
  .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-social {
    margin-top: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 19px 12px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 11px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.08rem; }
  .container, .section, .content-wrapper {
    padding: 0 3px;
    max-width: 99vw;
  }
  .service-list > div, .card {
    padding: 18px 8px 14px 10px;
  }
}

/*-------------------
   MISC UTILITIES
--------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.helpful-tips ul {
  font-size: 1rem;
  color: var(--secondary);
  list-style-type: square;
  margin-left: 18px;
}
.quick-response {
  background: var(--creative-bg-blue);
  border: 1.5px solid var(--creative-three);
  padding: 8px 16px;
  border-radius: 10px;
  color: var(--creative-three);
  font-weight: 500;
  margin-top: 10px;
}

/* Success "Thank you" page */
.thank-you {
  background: var(--creative-bg-pink);
  padding: 50px 0 38px 0;
  border-radius: var(--radius-main);
}
.thank-you h1 {
  color: #2C7A8A;
  font-weight: 800;
  font-size: 2.1rem;
  margin-bottom: 12px;
}

/* FAQ Titles */
.faqs h3 {
  font-size: 1.11rem;
  color: var(--creative-three);
  margin-top: 1.1em;
  margin-bottom: 0.3em;
}

/*-------------------------
  END Axion Pulse Yachting CSS
---------------------------*/
