/* RESET & 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;
  width: 100%;
  min-height: 100vh;
  background: #F7FAFC;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
:focus-visible{
  outline: 2px solid #415A77;
  outline-offset: 2px;
}

/* CSS VARIABLES (fallback for older browsers) */
:root {
  --primary: #1B263B;
  --secondary: #415A77;
  --accent: #F5CB5C;
  --bg: #F7FAFC;
  --white: #FFF;
  --text-dark: #141820;
  --text-light: #F7FAFC;
}

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-size: 16px;
  background: var(--bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2rem;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 24px;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
}
p, ul, li, a, strong, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
}
strong {
  font-weight: 600;
  color: var(--secondary);
}

/* SPACING & CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* HEADER */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 3px 18px rgba(64,90,119,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid var(--accent);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 12px;
}
.logo img {
  height: 42px;
  display: block;
  margin-right: 8px;
}
.main-nav {
  display: flex;
  gap: 22px;
  margin-left: 24px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  padding: 5px 0;
  position: relative;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: var(--accent);
  transition: width .2s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 36px;
  padding: 10px 32px;
  margin-left: 20px;
  box-shadow: 0 3px 12px rgba(245,203,92,0.20);
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
  border: 2px solid transparent;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 6px 20px rgba(27,38,59,0.09);
  transform: translateY(-2px) scale(1.025) rotate(-1deg);
  border-color: var(--accent);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  margin-left: auto;
  padding: 8px 10px;
  z-index: 102;
  border-radius: 5px;
  transition: background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,38,59,0.97);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.86,0,.07,1);
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 5px 0;
  font-size: 2.3rem;
  color: var(--accent);
  background: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(245,203,92,0.09);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 36px;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 1px dotted var(--accent);
  transition: color .18s, padding-left .18s;
}
.mobile-nav a:hover {
  color: var(--accent);
  padding-left: 6px;
}

/* Hide desktop nav on mobile */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .logo img {
    height: 36px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width:1001px) {
  .mobile-menu {
    display: none!important;
  }
}

/* HERO, SECTIONS, CARDS, FEATURES */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 600px) {
  section {
    padding: 30px 4px 30px 4px;
    margin-bottom: 38px;
  }
}
.feature-grid, .services-list, .process-steps, .testimonials, .blog-list, .case-study-list, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 900px){
  .feature-grid, .services-list, .process-steps, .blog-list, .case-study-list, .team-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .services-list, .process-steps, .blog-list, .case-study-list, .team-list {
    flex-direction: column;
    gap: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(65,90,119,0.085);
  padding: 25px 28px;
  min-width: 200px;
  transition: box-shadow .22s, transform .16s;
  margin-bottom: 20px;
  border: 1.5px solid var(--accent);
  position: relative;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
}
.feature-item:hover {
  box-shadow: 0 4px 32px rgba(65,90,119,0.15), 0 0 0 3px var(--accent);
  transform: translateY(-4px) scale(1.02) rotate(-1.5deg);
}
.services-list .service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(65,90,119,0.11);
  padding: 34px 30px 28px 30px;
  margin-bottom: 20px;
  min-width: 270px;
  transition: box-shadow .22s, transform .15s;
  border: 1.5px solid var(--secondary);
  align-items: flex-start;
  gap: 10px;
  position: relative;
  min-height: 220px;
}
.services-list .service-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 5px;
}
.services-list .service-card:hover {
  box-shadow: 0 6px 32px rgba(245,203,92,0.17) ,0 0 0 3px var(--accent);
  transform: scale(1.025) rotate(1.7deg);
}
.services-list .price {
  font-size: 1.13rem;
  color: var(--accent);
  font-weight: bold;
  background: rgba(245,203,92,0.11);
  padding: 2px 16px;
  border-radius: 20px;
  margin-top: 7px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.process-steps .step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 23px 22px 26px 22px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(65,90,119,0.09);
  border: 1.5px solid var(--secondary);
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow .18s,transform .13s;
}
.process-steps .step img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}
.process-steps .step:hover {
  box-shadow: 0 6px 32px rgba(65,90,119,0.13),0 0 0 3px var(--accent);
  transform: translateY(-3px) scale(1.03);
}

/* CARD CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(65,90,119,0.11);
  transition: box-shadow .16s, transform .14s;
}
.card:hover {
  box-shadow: 0 5px 26px rgba(245,203,92,0.22);
  transform: scale(1.016);
}

/* CONTENT GRIDS */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* TEXT-IMAGE SECTION */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(65,90,119,0.13);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 380px;
  font-size: 1.08rem;
  transition: box-shadow .2s, transform .12s;
  border: 2px solid var(--primary);
}
.testimonial-card p {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.08rem;
}
.testimonial-card .customer-info {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .22px;
}
.testimonial-card .stars {
  color: #e7b600;
  font-size: 1.25rem;
  letter-spacing: .02rem;
  background: rgba(27,38,59,0.07);
  border-radius: 10px;
  padding: 0 10px 2px 10px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(27,38,59,0.19), 0 0 0 4px var(--secondary);
  transform: scale(1.02) rotate(-1.7deg);
}

/* TEAM MEMBER CARDS */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.team-member {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(65,90,119,0.08);
  border: 1.5px solid var(--secondary);
  padding: 28px 22px 18px 22px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow .12s, transform .11s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.team-member:hover {
  box-shadow: 0 8px 24px rgba(245,203,92,0.21);
  transform: translateY(-3px) scale(1.03);
}

/* CASE STUDIES */
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(65,90,119,0.07);
  border-left: 7px solid var(--accent);
  padding: 34px 28px 20px 32px;
  min-width: 230px;
  max-width: 390px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
}
.case-study h2 {
  font-size: 1.17rem;
  margin-bottom: 3px;
  color: var(--secondary);
}
.project-label {
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  padding: 1px 10px 2px 10px;
  font-size: .98rem;
  font-weight: bold;
  display: inline-block;
}

/* BLOG POSTS */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(65,90,119,0.1);
  padding: 26px 24px 22px 24px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid var(--primary);
  transition: box-shadow .17s, transform .13s;
}
.blog-post:hover {
  box-shadow: 0 6px 32px rgba(245,203,92,0.16);
  transform: scale(1.017) rotate(-1.3deg);
}
.tags {
  font-size: .93rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.read-more {
  color: var(--secondary);
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  margin-top: 8px;
  transition: color .16s;
}
.read-more:hover {
  color: var(--accent);
}

/* ACCORDION FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 10px rgba(65,90,119,0.04);
  border-radius: 15px;
  padding: 18px 18px 8px 18px;
  margin-bottom: 20px;
  transition: box-shadow .13s;
}
.faq-item h3 {
  cursor: pointer;
  position: relative;
  padding-right: 18px;
  font-size: 1.06rem;
  font-weight: 700;
}
.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: bold;
  transition: transform .15s;
}
.faq-item.open h3::after {
  content: '-';
}
.faq-answer {
  margin-top: 7px;
  font-size: 1rem;
  color: var(--secondary);
  max-height: 1200px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .3s, opacity .25s;
}
.faq-item:not(.open) .faq-answer {
  max-height: 0px;
  opacity: 0;
}

/* TEXT SECTIONS */
.text-section {
  margin-bottom: 22px;
  padding: 12px 5px 5px 0;
}
.map-placeholder {
  background: var(--white);
  border: 1.5px solid var(--secondary);
  border-radius: 12px;
  padding: 24px 22px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.map-placeholder img {
  width: 100%;
  max-width: 360px;
  margin-bottom: 8px;
}

/* BUTTONS */
button, .cta-btn, .faq-item h3 {
  transition: background .18s, box-shadow .18s, color .18s, border .18s, transform .16s;
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--primary);
  color: var(--accent);
  margin-top: 70px;
  padding: 34px 0 0 0;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  height: 38px;
}
.footer-brand span {
  color: var(--accent);
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .17px;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .16s;
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover {
  color: var(--white);
  border-bottom: 2px solid var(--accent);
}
@media (max-width: 700px){
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-nav {
    margin-top: 9px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe0;
  color: var(--primary);
  box-shadow: 0 -3px 24px rgba(65,90,119,0.10);
  padding: 22px 14px 22px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1300;
  gap: 20px;
  animation: banner-slide-in .6s cubic-bezier(.22,1,.36,1);
}
@keyframes banner-slide-in {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  min-width: 110px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 28px;
  border: 2px solid var(--secondary);
  cursor: pointer;
  transition: background .16s, color .16s,box-shadow .16s;
  margin-right: 8px;
  background: var(--white);
  color: var(--primary);
}
.cookie-btn.accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}
.cookie-btn.reject {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}
.cookie-btn.settings {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--accent);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 18px rgba(65,90,119,0.14);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1400;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,38,59,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in .4s cubic-bezier(.24,1,.36,1);
}
@keyframes modal-fade-in {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  padding: 35px 28px 32px 28px;
  border-radius: 18px;
  max-width: 440px;
  width: 95%;
  box-shadow: 0 8px 42px rgba(65,90,119,0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 0px;
  color: var(--secondary);
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 10px 0 5px 0;
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.cookie-description {
  font-size: .97rem;
  color: var(--secondary);
  margin-left: 32px;
  margin-bottom: 5px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 14px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.close-cookie-modal {
  position: absolute;
  top: 16px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  z-index: 2;
}

/* RESPONSIVENESS */
@media (max-width: 1200px){
  .container { max-width: 960px; }
}
@media (max-width: 1000px) {
  .container { max-width: 750px; }
}
@media (max-width:700px){
  .content-wrapper { gap: 15px; }
  .feature-item { padding:16px 12px; }
  .services-list .service-card { padding: 18px 12px; }
  .team-member { padding: 16px 10px; }
  .case-study { padding: 18px 9px 14px 13px; }
  .testimonial-card { padding: 14px 10px; min-width: 180px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem;}
  .footer-brand img { height: 27px; }
}

/* EXTRA CREATIVE ARTISTIC DECORATION */

section h1, section h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
}
section h1::before, section h2::before {
  content: '';
  display: block;
  position: absolute;
  left: -16px;
  bottom: 5px;
  width: 50px;
  height: 18px;
  background: var(--accent);
  opacity: 0.23;
  border-radius: 12px;
  transform: rotate(-3.5deg);
  z-index: -1;
  pointer-events: none;
}

/* Artistic underline for cta-btn */
.cta-btn {
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 5px;
  height: 6px;
  background: var(--accent);
  opacity: 0.21;
  border-radius: 3px;
  pointer-events: none;
  z-index: 1;
}

/* Artistic background blobs (decorative only, not content) */
body::before {
  content: '';
  position: fixed;
  top: -140px;
  right: -100px;
  width: 320px; height: 220px;
  background: var(--accent);
  opacity: .12;
  filter: blur(14px);
  z-index: 0;
  pointer-events: none;
  border-radius:160px;
}
body::after {
  content: '';
  position: fixed;
  left: -120px;
  bottom: -110px;
  width: 270px; height: 170px;
  background: var(--secondary);
  opacity: .09;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  border-radius: 140px;
}

/* Table Styling (when present) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 1rem;
}
th, td {
  border: 1px solid var(--accent);
  padding: 10px 8px;
}
th {
  background: var(--secondary);
  color: var(--accent);
}

/* Forms (inputs not present in HTML, but base styles) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 9px 12px;
  border: 1.5px solid var(--secondary);
  border-radius: 8px;
  background: var(--white);
  color: var(--primary);
  margin-bottom: 10px;
  transition: border .16s, box-shadow .16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent);
  outline: none;
  box-shadow: 0 0 3px var(--accent);
}

/* Misc */
::-webkit-scrollbar{
  width: 8px;
  background: #eaeaea;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb{
  background: var(--secondary);
  border-radius: 4px;
}

/* ====== END OF CSS ====== */
