/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #35454A;
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
}

/* FONT IMPORTS (must be available from server or Google Fonts) */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Playfair Display'), url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
}

/* TYPOGRAPHY -------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #35454A;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
}
p, li, blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #35454A;
  font-size: 1rem;
  margin-bottom: 14px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
blockquote {
  border-left: 4px solid #AEB9B2;
  margin-left: 0;
  margin-right: 0;
  padding-left: 18px;
  font-size: 1.05rem;
  font-style: italic;
  color: #35454A;
  background: #F5F5F5;
  border-radius: 0 12px 12px 0;
}

strong, b {
  font-weight: bold;
  color: #35454A;
  letter-spacing: 0.02em;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 14px;
  padding-left: 24px;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}

/* CONTAINER & LAYOUT --------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* SECTION SPACING (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
}
@media (max-width: 600px) {
  section {
    padding: 32px 5vw;
    margin-bottom: 36px;
  }
}

/* FLEXBOX LAYOUTS ----------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1.5px solid #AEB9B2;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 20px rgba(53,69,74,0.06);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 340px;
  transition: box-shadow 0.22s cubic-bezier(.23,.49,.38,.94), transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(53,69,74,0.14);
  transform: translateY(-3px) scale(1.03);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
}

/* Feature Grid (services) ------------------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 260px;
  background: #fff;
  border: 2px solid #AEB9B2;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 2px 12px rgba(53,69,74,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.feature-grid > div:hover {
  border-color: #35454A;
  box-shadow: 0 6px 24px rgba(53,69,74,0.10);
  z-index: 2;
}
.feature-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.14s;
}
.feature-grid > div:hover img {
  transform: scale(1.08) rotate(-3deg);
}

/* TESTIMONIALS (MANDATORY CONTRAST) ----------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FAFAFA;
  border: 2px solid #AEB9B2;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(53,69,74,0.08);
  color: #222;
  max-width: 350px;
  flex: 1 1 270px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px rgba(53,69,74,0.17);
  transform: translateY(-4px) scale(1.02);
  border-color: #35454A;
  z-index: 3;
}
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #35454A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.93rem;
  font-style: normal;
  letter-spacing: 0.02em;
}

/* NAVIGATION ---------------------------------- */
header {
  background: #fff;
  border-bottom: 2px solid #EDE5DE;
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: 60px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  min-height: 60px;
  position: relative;
}
header img {
  height: 38px;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1 1 auto;
}
.main-nav a {
  color: #35454A;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  padding: 6px 1px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #AEB9B2;
  border-bottom: 2.5px solid #AEB9B2;
}
.cta-btn {
  color: #fff;
  background: #35454A;
  border-radius: 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 11px 34px;
  text-decoration: none;
  margin-left: 28px;
  box-shadow: 0 2px 8px rgba(53,69,74,0.13);
  border: 0;
  outline: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.14s, box-shadow 0.15s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #AEB9B2;
  color: #35454A;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 24px rgba(53,69,74,0.15);
  text-decoration: none;
}

/* MOBILE BURGER MENU ------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #35454A;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1202;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #EDE5DE;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(53,69,74,0.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.36,.62,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.7rem;
  margin: 22px 24px 0 0;
  cursor: pointer;
  z-index: 1250;
  transition: color 0.16s, background 0.15s;
  border-radius: 8px;
  padding: 2px 6px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #AEB9B2;
  background: rgba(255,255,255,0.09);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-top: 62px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.30rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 0;
  width: 100vw;
  text-align: center;
  transition: background 0.17s, color 0.18s;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #AEB9B2;
  color: #35454A;
}
@media (max-width: 1040px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
  }
}
@media (min-width: 1041px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER ------------------------------------------- */
footer {
  background: #fff;
  border-top: 2px solid #EDE5DE;
  padding: 40px 0 16px 0;
  margin-top: 32px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: 0.98rem;
  color: #AEB9B2;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #35454A;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.13s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #AEB9B2;
}
.brand-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.brand-foot img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.brand-foot span {
  color: #AEB9B2;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

/* BLOG --------------------------------------------- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.blog-list article {
  background: #fff;
  border: 1.5px solid #AEB9B2;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(53,69,74,0.07);
  padding: 26px 18px 22px 18px;
  min-width: 250px;
  max-width: 360px;
  transition: box-shadow 0.19s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.blog-list article:hover {
  box-shadow: 0 8px 28px rgba(53,69,74,0.14);
  border-color: #35454A;
  transform: translateY(-3px) scale(1.03);
}
.blog-list h2 {
  font-size: 1.35rem;
}
.blog-list a {
  color: #35454A;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.16s;
}
.blog-list a:hover {
  color: #AEB9B2;
}
.blog-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.99rem;
}
.blog-categories span {
  font-weight: bold;
  color: #35454A;
}
.blog-categories a {
  color: #AEB9B2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.12s;
}
.blog-categories a:hover,
.blog-categories a:focus {
  color: #35454A;
  text-decoration: underline;
}
input[type="search"],
input[type="email"] {
  border: 1.5px solid #AEB9B2;
  border-radius: 7px;
  padding: 10px 14px;
  width: 100%;
  max-width: 370px;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background: #FAFAFA;
  color: #35454A;
  transition: border-color 0.19s;
}
input[type="search"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: #35454A;
}
form {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
form button, button[type=submit] {
  background: #35454A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, transform 0.12s;
}
form button:hover, form button:focus {
  background: #AEB9B2;
  color: #35454A;
  transform: translateY(-2px);
}

/* FAQ LIST ---------------------------------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list > div {
  background: #fff;
  border-radius: 13px;
  padding: 19px 21px;
  border: 1.5px solid #AEB9B2;
  box-shadow: 0 1px 7px rgba(53,69,74,0.05);
  flex: 1 1 260px;
}
.faq-list h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

/* CASE STUDIES (PORTFOLIO) ----------------------- */
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.case-studies > div {
  background: #fff;
  border: 1.5px solid #AEB9B2;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(53,69,74,0.08);
  padding: 23px 20px;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 390px;
}
.case-studies h2 {
  font-size: 1.32rem;
}
.case-studies blockquote {
  background: #F5F5F5;
  border-radius: 0 11px 11px 0;
  font-size: 1rem;
  color: #35454A;
  border-left: 3px solid #AEB9B2;
  margin: 12px 0 0 0;
}

/* LOCATION MAP --------------------------------- */
.location-map {
  display: flex;
  align-items: center;
  margin-top: 18px;
}
.location-map img {
  width: 80px;
  height: 80px;
}

/* FORM ELEMENTS/LINKS ------------------------- */
a {
  color: #35454A;
  text-decoration: underline;
  transition: color 0.14s;
}
a:hover, a:focus {
  color: #AEB9B2;
  text-decoration: underline;
}

/* TABLE/PRIVACY/GDPR/CONTENT PAGES ----------- */
.text-section {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* LISTS with ICONS (services) ---------------- */
.feature-grid ul,
.text-section ul,
.content-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.feature-grid ul li,
.text-section ul li,
.content-wrapper ul li {
  padding: 0 0 0 22px;
  position: relative;
  min-height: 22px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.feature-grid ul li:before,
.text-section ul li:before,
.content-wrapper ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #AEB9B2;
  border-radius: 2px;
  display: inline-block;
}

/* UTILITY CLASSES --------------------------- */
.hide-on-desktop {
  display: none !important;
}
@media (max-width: 1040px) {
  .hide-on-desktop {
    display: inherit !important;
  }
}
.hide-on-mobile {
  display: inherit !important;
}
@media (max-width: 1040px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* RESPONSIVE ADJUSTMENTS ------------------- */
@media (max-width: 900px) {
  .feature-grid > div,
  .case-studies > div,
  .card {
    max-width: 100%;
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .testimonial-slider,
  .content-grid,
  .case-studies,
  .blog-list,
  .faq-list,
  .card-container {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 5vw;
  }
  .feature-grid > div,
  .testimonial-card,
  .card,
  .faq-list > div,
  .case-studies > div {
    max-width: 100%;
    min-width: 0;
    padding: 18px 12px;
    font-size: 0.97rem;
  }
}
@media (max-width: 600px) {
  header img {
    height: 30px;
    margin-right: 9px;
  }
  .brand-foot img {
    width: 28px;
    height: 28px;
  }
  footer {
    padding: 22px 0 12px 0;
  }
}

/* COOKIE CONSENT BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #35454A;
  color: #fff;
  padding: 18px 9vw 20px 9vw;
  box-shadow: 0 -6px 44px 8px rgba(53,69,74,0.14);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  transition: transform 0.34s cubic-bezier(.36,.62,.36,1), opacity 0.3s;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 24px;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  transition: opacity 0.13s, background 0.17s, color 0.15s;
}
.cookie-banner .accept {
  background: #AEB9B2;
  color: #35454A;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #fff;
  color: #35454A;
}
.cookie-banner .reject {
  background: #fff;
  color: #35454A;
  border: 2px solid #AEB9B2;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #AEB9B2;
  color: #35454A;
}
.cookie-banner .settings-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #fff;
  color: #35454A;
}

/* Cookie Modal ----------------------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(53,69,74,0.75);
  z-index: 4020;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  padding: 32px 26px;
  border-radius: 22px 22px 0 0;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 0 auto;
  box-shadow: 0 8px 38px 8px rgba(53,69,74,0.17);
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: cookie-modal-in 0.36s cubic-bezier(.36,.62,.36,1);
}
@keyframes cookie-modal-in {
  0% { transform: translateY(80px) scale(0.97); opacity: 0; }
  85% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Playfair Display', serif;
  color: #35454A;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-modal p {
  color: #35454A;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F8F7;
  border-radius: 11px;
  padding: 10px 17px;
  margin-bottom: 8px;
}
.cookie-category label {
  color: #35454A;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #AEB9B2;
  border-radius: 10px;
  margin-left: 10px;
  vertical-align: middle;
}
.cookie-category input[disabled] {
  accent-color: #AEB9B2;
  opacity: 0.6;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  border-radius: 24px;
  font-size: 1rem;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  border: none;
  background: #AEB9B2;
  color: #35454A;
  transition: background 0.16s, color 0.15s;
}
.cookie-modal .modal-actions button:hover,
.cookie-modal .modal-actions button:focus {
  background: #35454A;
  color: #fff;
}

/* TRANSITIONS, MICRO-INTERACTIONS ----------------- */
.card, .feature-grid > div, .testimonial-card, .case-studies > div, .faq-list > div, .blog-list article, .cta-btn, .main-nav a, .footer-menu a, .mobile-nav a {
  transition-timing-function: cubic-bezier(.21,.64,.55,1);
}

/* GEOMETRIC STRUCTURED DESIGN ELEMENTS ----------- */
section {
  border: 3.5px solid #EDE5DE;
  box-shadow: 0 4px 18px 2px rgba(173,184,181,0.04);
}
.card, .feature-grid > div, .testimonial-card, .faq-list > div, .case-studies > div {
  border-radius: 16px 16px 34px 8px;
}
.cta-btn, form button[type=submit] {
  border-radius: 999px 12px 24px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 3px 16px 1px rgba(53,69,74,0.08);
}
.text-section, .blog-list article, .card-content {
  border-radius: 8px;
}
input[type="search"],
input[type="email"] {
  border-radius: 7px 14px 14px 7px;
}

/* END OF FILE */
