/* RESET AND NORMALIZE */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F9FAFC;
  color: #183153;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s;
}
button, input, textarea, select {
  font: inherit;
}

/* ROOT COLORS & FONTS */
:root {
  --primary: #183153;
  --secondary: #63B67E;
  --accent: #FFECBE;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --electric-blue: #249FFF;
  --electric-green: #1DE9B6;
  --electric-pink: #F92A74;
  --electric-orange: #FF9820;
  --dark: #12213A;
  --light: #F9FAFC;
  --text-dark: #183153;
  --text-light: #FFF;
}

/* TYPOGRAPHY SCALE */
h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--electric-green);
  margin-bottom: 14px;
}

h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
}

p, ul, ol, li, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.7;
}
p {
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
  color: var(--electric-pink);
}

/* LINK & BUTTON STYLES */
a:hover, a:focus {
  color: var(--electric-pink);
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
  margin-top: 16px;
  box-shadow: 0 2px 16px 0 rgba(36,159,255, 0.10);
}
.btn-primary {
  background: var(--electric-blue);
  color: var(--text-light);
  box-shadow: 0 4px 16px 0 rgba(36,159,255, 0.18);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--electric-green);
  color: var(--dark);
  box-shadow: 0 6px 24px 0 rgba(30,233,182,0.12);
}
.btn-secondary {
  background: var(--electric-orange);
  color: var(--text-dark);
  box-shadow: 0 2px 12px rgba(255,152,32,0.10);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--electric-pink);
  color: var(--text-light);
  box-shadow: 0 4px 18px 0 rgba(249,42,116, 0.15);
}

/* CONTAINER AND SECTION LAYOUTS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section, .hero-section, .features-section, .about-section, .services-section, .cta-section, .testimonials-section, .resources-section, .legal-section, .mission-section, .team-section, .confirmation-section, .contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(24,49,83,0.06);
}

.hero-section {
  position: relative;
  z-index: 1;
  padding-top: 54px;
  padding-bottom: 54px;
  background: var(--accent);
  box-shadow: 0 2px 32px 0 rgba(255,236,190,0.14);
}
.hero-section h1 {
  color: var(--electric-pink);
  font-size: 2.25rem;
  text-shadow: 0 6px 16px rgba(24,49,83,0.03);
}
.hero-section p {
  font-size: 1.18rem;
  color: var(--primary);
  max-width: 640px;
  margin-bottom: 16px;
}

.features-section {
  background: #e9f7fd;
  box-shadow: 0 2px 26px 0 rgba(36,159,255,0.07);
}
.about-section, .mission-section {
  background: #f8fefa;
}
.services-section {
  background: #fff8ef;
}
.resources-section {
  background: #eafcfa;
}
.cta-section {
  background: #FAEEFF;
  box-shadow: 0 2px 48px rgba(249,42,116,0.06);
}
.legal-section, .confirmation-section, .contact-section {
  background: #FFF;
  box-shadow: 0 2px 24px rgba(36,159,255,0.06);
}

/* CARD & FLEX UTILITIES */
.card-container, .feature-grid, .service-list, .team-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 15px 0 rgba(24,49,83,0.11);
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item, .service-item, .team-member {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 1.5px 10px rgba(99,182,126,0.065);
  gap: 15px;
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  transition: border 0.22s, box-shadow 0.22s, transform 0.19s;
}
.feature-item:hover, .service-item:hover, .team-member:hover {
  border: 2px solid var(--electric-blue);
  box-shadow: 0 6px 24px rgba(24,49,83,.10);
  transform: translateY(-6px) scale(1.02);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0px 3px 22px 0 rgba(36,159,255,0.08);
  margin-bottom: 28px;
  min-width: 260px;
  max-width: 410px;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card .stars {
  color: var(--electric-orange);
  font-size: 1.3rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* GENERAL FLEX UTILITIES */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.step-by-step-guide ol, .faqs-section ul,
.resources-section ul, .resources-section h3 + ul {
  margin-bottom: 20px;
}

/* NAVIGATION */
header {
  background: var(--primary);
  box-shadow: 0 3px 24px rgba(24,49,83,0.18);
  z-index: 40;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 24px;
  position: relative;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 3px;
  border-radius: 5px;
  transition: background 0.16s, color 0.15s;
  outline: none;
}
.main-nav a::after {
  display: block;
  content: '';
  border-bottom: solid 3px var(--electric-green);
  transform: scaleX(0);
  transition: transform 0.22s ease;
  margin-top: 4px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  transform: scaleX(1);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--electric-pink);
  background: rgba(255,255,255,0.11);
}

.btn-primary {
  margin-left: 18px;
}

/* HAMBURGER MENU (Mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
  padding: 6px 10px;
  z-index: 111;
  transition: color 0.22s, transform 0.19s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--electric-pink);
  transform: scale(1.14);
  outline: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #14243d;
  z-index: 3500;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.8,.1,.2,1);
  box-shadow: 0 2px 44px 0 rgba(24,49,83,0.4);
  padding-top: 30px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--electric-pink);
  padding: 0 22px 14px 0;
  cursor: pointer;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--electric-green);
  transform: rotate(90deg) scale(1.09);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  color: #FFF;
  padding: 10px 2px;
  border-radius: 5px;
  font-weight: 700;
  transition: background 0.23s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-blue);
  color: #fff;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 44px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-brand span, .footer-contact span {
  color: white;
}
.footer-brand img {
  width: 40px;
  height: 40px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--accent);
  font-size: 1rem;
  font-family: var(--font-body);
  opacity: 0.93;
  transition: color 0.19s;
  padding: 4px 7px;
  border-radius: 5px;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--electric-green);
  background: rgba(255,255,255,.06);
  outline: none;
}
.footer-contact {
  font-size: 0.95rem;
  color: var(--accent);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact img {
  width: 18px;
  vertical-align: middle;
  margin-right: 7px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  filter: brightness(1.03) contrast(1.20) saturate(1.6);
  transition: filter 0.19s, transform 0.17s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: brightness(1.1) contrast(1.35) saturate(2.0) drop-shadow(0 2px 12px var(--electric-pink));
  transform: scale(1.10) rotate(-7deg);
}

/* COMPARISON TABLES/FAQS & MAP */
.comparison-table, .faqs-section, .map-placeholder {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,49,83,0.07);
  padding: 24px 20px;
  margin-bottom: 20px;
}
.comparison-table h3, .faqs-section h3, .map-placeholder h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--electric-blue);
}

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--electric-blue);
  color: #fff;
  padding: 22px 18px 24px 18px;
  box-shadow: 0 -4px 28px 0 rgba(24,49,83,0.11);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  z-index: 9600;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(.71,.04,.25,1.28);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  padding: 8px 18px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.19s, color 0.19s, box-shadow 0.21s;
}
.cookie-btn.accept {
  background: var(--electric-green);
  color: #12213A;
  box-shadow: 0 2.5px 15px rgba(29,233,182,0.10);
}
.cookie-btn.accept:hover {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-btn.reject:hover {
  background: var(--electric-orange);
  color: #12213A;
}
.cookie-settings-btn {
  background: var(--accent);
  color: var(--primary);
}
.cookie-settings-btn:hover {
  background: var(--electric-blue);
  color: #fff;
}


/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 98%;
  max-width: 380px;
  background: #FFF;
  box-shadow: 0 10px 50px 0 rgba(24,49,83,0.18);
  border-radius: 18px;
  padding: 34px 22px 22px 22px;
  transform: translate(-50%, -50%) scale(1);
  z-index: 9700;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: popin 0.33s cubic-bezier(.81,-0.02,0,1.01);
}
@keyframes popin {
  0% { opacity:0; transform:translate(-50%, -60%) scale(0.96); }
  100% { opacity:1; transform:translate(-50%,-50%) scale(1); }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  appearance: none;
  background: #d2d6df;
  border-radius: 15px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: var(--electric-green);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  background: #fff;
  width: 16px; height: 16px;
  border-radius: 50%;
  transition: left 0.18s;
  box-shadow: 0 1.2px 4px rgba(24,49,83,0.08);
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  min-width: 90px;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 10px; right: 10px;
  font-size: 1.63rem;
  color: var(--electric-pink);
  cursor: pointer;
  transition: color 0.15s, transform 0.11s;
}
.cookie-modal .modal-close:hover {
  color: var(--electric-green);
  transform: scale(1.18) rotate(90deg);
}

/* FORMS & LABELS */
input, textarea, select {
  border: 1.5px solid #e3e8f0;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  width: 100%;
  background: #f4f6fA;
  margin-bottom: 18px;
  transition: border 0.18s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--electric-blue);
  box-shadow: 0 0 6px 0 var(--accent);
  outline: none;
}
label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--electric-blue);
  margin-bottom: 7px;
  display: block;
  font-weight: 600;
}

/* CONTENT SPACING & MISC UTILITIES */
section ul, section ol {
  margin: 14px 0 18px 18px;
  padding-left: 10px;
  color: var(--primary);
}
section ul li, section ol li {
  margin-bottom: 10px;
  font-size: 1rem;
}
section ol li {
  list-style: decimal;
  margin-left: 18px;
}
li strong, section ul li strong {
  color: var(--electric-pink);
  font-weight: 700;
}

.map-placeholder {
  background: #e9f7fd;
  color: var(--electric-blue);
  border-radius: 10px;
  padding: 14px 10px 14px 18px;
  margin-top: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-info img {
  width: 21px;
  margin-right: 7px;
}

/* PAGE-SPECIFIC NON-FLEX CARDS */
.confirmation-section ul {
  margin-left: 8px;
  margin-bottom: 18px;
}
.confirmation-section ul li {
  margin-bottom: 6px;
}

/* ACCESSIBILITY FOCUS STATES */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2.5px solid var(--electric-blue);
  outline-offset: 2px;
}

/* ANIMATIONS/MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .feature-item, .service-item, .team-member, .testimonial-card, .footer-social a img, .main-nav a, .mobile-nav a, .mobile-menu-close {
  transition: background .23s, color .2s, box-shadow .23s, border .15s, transform .17s;
}

.feature-item:hover, .service-item:hover, .team-member:hover {
  transform: translateY(-5px) scale(1.025) rotate(-2.8deg);
  box-shadow: 0 12px 44px 0 rgba(30,233,182,0.13);
}

.testimonial-card {
  transition: box-shadow .18s, transform .17s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 34px 0 rgba(36,159,255,0.18);
  transform: translateY(-5px) scale(1.018);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
  .footer-brand, .footer-contact, .footer-links, .footer-social {
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .card-container, .feature-grid, .service-list, .team-list, .content-grid {
    gap: 16px;
  }
  .container {
    padding: 0 8px;
  }
  .footer-brand 
  {
    font-size: 1rem;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.15rem;   }
  h3 { font-size: 1.01rem;   }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .container, .section, .hero-section, .features-section, .about-section, .services-section, .cta-section, .testimonials-section, .resources-section, .legal-section,
  .mission-section, .team-section, .confirmation-section, .contact-section {
    padding: 22px 7px 22px 7px;
  }
  .section, .hero-section, .features-section, .about-section, .services-section, .cta-section, .testimonials-section, .resources-section, .legal-section,
  .mission-section, .team-section, .confirmation-section, .contact-section { margin-bottom: 38px; }
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-brand, .footer-contact, .footer-links, .footer-social {
    font-size: 0.95rem;
    gap: 7px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid, .card-container, .feature-grid, .service-list, .team-list, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .feature-item, .service-item, .team-member {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .mobile-menu {
    padding-top: 18px;
    padding-left: 0;
  }
  .mobile-nav {
    margin: 24px 0 0 18px;
    gap: 21px;
    font-size: 1.05rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    font-size: 0.99rem;
  }
}
@media (max-width: 480px) {
  .footer-brand img {
    width: 32px;
    height: 32px;
  }
  .footer-social a img {
    width: 26px;
    height: 26px;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.93rem;
    padding: 8.5px 14px;
  }
  .cookie-modal {
    padding: 22px 8px 18px 8px;
    width: 99vw;
    max-width: 98vw;
  }
}

/* OVERLAY for Modal/Cookie */
.cookie-backdrop {
  display: none;
  position: fixed;
  z-index: 9650;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,49,83,0.32);
  animation: fadeInBg 0.33s;
}
.cookie-backdrop.open {
  display: block;
}
@keyframes fadeInBg {
  0% { opacity:0; }
  100% { opacity:1; }
}

/* SCROLLBARS (STYLE FOR CHROME/EDGE ONLY) */
::-webkit-scrollbar {
  width: 9px; background: #f0f6ff;
}
::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 7px;
  box-shadow: 0 0 12px rgba(36,159,255,0.13);
}

/* MISC */
.hide { display: none !important; }

/* ENSURE ALL CONTENT HAS ADEQUATE GAPS/MARGINS */
.section > *,
.hero-section > *,
.features-section > *,
.services-section > *,
.about-section > *,
.cta-section > *,
.resources-section > *,
.legal-section > *,
.mission-section > *,
.team-section > *,
.confirmation-section > *,
.contact-section > * {
  margin-bottom: 20px;
}
.section > *:last-child,
.hero-section > *:last-child,
.features-section > *:last-child,
.services-section > *:last-child,
.about-section > *:last-child,
.cta-section > *:last-child,
.resources-section > *:last-child,
.legal-section > *:last-child,
.mission-section > *:last-child,
.team-section > *:last-child,
.confirmation-section > *:last-child,
.contact-section > *:last-child {
  margin-bottom: 0;
}

/* VISUAL HIERARCHY for VIBRANT/ENERGETIC FEEL */
h1, h2 {
  text-transform: none;
  text-shadow: 0 6px 16px rgba(255,152,32,0.03);
}
h3 {
  text-shadow: 0 3px 12px rgba(29,233,182,0.05);
}

/**** END OF CSS STYLE SHEET ****/
