/* 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,
main,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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,:before,:after {
  box-sizing: inherit;
}
body {
  background: #F6F6F6;
  color: #264653;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #B08B2F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E9C46A;
}
ul,ol {
  margin-left: 1.2em;
  padding-left: 0.6em;
}
table { width: 100%; border-collapse: collapse; margin-bottom: 32px; background: #fff; box-shadow:0 1px 6px rgba(38,70,83,0.06); border-radius:10px; overflow:hidden; }
th,td { padding: 14px 18px; border-bottom:1px solid #eee; }
th { background: #264653; color: #fff; font-weight: 600; font-size: 18px; }
td { font-size: 16px; }
tr:last-child td { border-bottom:none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #264653;
  margin-bottom: 18px;
}
h1 { font-size: 2.75rem; margin-bottom: 22px; line-height:1.12; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 14px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p { margin-bottom: 18px; }
strong { font-weight: 600; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.text-section {
  max-width: 820px;
  margin: 0 auto;
}

/* SPACING & SECTION LAYOUT */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(38,70,83,0.10);
}
section:last-child { margin-bottom: 0; }
.section-accent { background: #F6F6F6; box-shadow: none; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(38,70,83,0.10);
  padding: 32px 26px;
  flex: 1 1 300px;
  position: relative;
}
/* Feature card style */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(38,70,83,0.09);
  padding: 28px 22px;
}

.content-grid, .profile-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 26px;
}
.profile-grid > div, .feature-grid > div {
  background: #fff;
  border-radius: 13px;
  box-shadow:0 1px 8px rgba(38,70,83,0.09);
  padding: 22px 16px 18px 16px;
  flex: 1 1 275px;
  min-width: 230px;
  margin-bottom: 20px;
  position: relative;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-image-section img { border-radius: 14px; }

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #264653;
  box-shadow: 0 4px 18px rgba(38,70,83,0.10);
  border-left: 5px solid #E9C46A;
  border-radius: 13px;
  padding: 20px 28px 20px 26px;
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 240px;
}
.testimonial-card p {
  color: #222;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.075rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.testimonial-card span {
  align-self: flex-end;
  font-size: 15px;
  color: #B08B2F;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
}

/**** HEADER & TOP NAVIGATION ****/
header {
  background: #fff;
  border-bottom:1px solid #ebe5d6;
  box-shadow:0 1px 8px rgba(38,70,83,0.06);
  position: relative;
  z-index:30;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  justify-content: space-between;
}
header a img {
  max-height: 42px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing:0.01em;
  padding: 10px 0 6px 0;
  transition: color 0.18s;
  color: #264653;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #E9C46A;
  margin: 0 auto;
  border-radius: 1px;
  transition: width 0.18s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 70%;
}
.main-nav a:hover, .main-nav a:focus { color: #B08B2F; }

.cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size:1.05rem;
  letter-spacing:0.015em;
  color: #fff;
  background: #E9C46A;
  padding: 14px 32px;
  border-radius: 25px;
  border:none;
  box-shadow:0 1px 8px rgba(38,70,83,0.11);
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.2s;
  margin-left: 24px;
  text-align: center;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #B08B2F;
  color: #264653;
  box-shadow:0 4px 18px rgba(38,70,83,0.16);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size:2rem;
  color: #E9C46A;
  cursor: pointer;
  margin-left: 18px;
  z-index:42;
  transition: color 0.17s;
}
.mobile-menu-toggle:hover {
  color: #B08B2F;
}

/**** MOBILE MENU ****/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 380px;
  height: 100vh;
  background:#fff;
  box-shadow: -5px 0 32px rgba(38,70,83,0.15);
  z-index:1000;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.77,0.2,0.05,1.0);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 28px 22px 22px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size:2rem;
  color: #264653;
  margin-bottom:18px;
  cursor: pointer;
  transition: color 0.18s;
  z-index:1100;
}
.mobile-menu-close:hover { color: #E9C46A; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top:12px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.10rem;
  color: #264653;
  padding:16px 0 8px 5px;
  border-bottom: 1px solid #F6F6F6;
  transition: color 0.18s;
}
.mobile-nav a:last-child { border-bottom:none; }
.mobile-nav a:hover {
  color: #E9C46A;
}

/**** HERO SECTION ****/
.hero {
  background: #264653;
  color: #fff;
  padding: 64px 0 52px 0;
  border-radius: 0 0 28px 28px;
  box-shadow:0 12px 32px rgba(38,70,83,0.10);
  margin-bottom: 54px;
}
.hero h1 { color: #fff; }
.hero p { color:#fefefe; font-size:1.21rem; margin-bottom:26px; }
.hero .cta-button {
  background: #E9C46A;
  color: #264653;
  font-weight: 600;
  margin-left: 0;
  box-shadow:0 2px 12px rgba(255,204,88,0.10);
}
.hero .cta-button:hover {
  background: #B08B2F;
  color: #fff;
}

/**** PRICING TABLE ****/
.pricing-section table {
  margin: 30px 0 26px 0;
  border-radius:12px;
  overflow:hidden; 
  box-shadow:0 1px 7px rgba(38,70,83,0.09);
}
.pricing-section tr:nth-child(even) td { background: #F6F6F6; }
.pricing-section th { background: #264653; color: #E9C46A; font-size:17px; }
.pricing-section td { color: #264653; }

/**** FOOTER ****/
footer {
  background: #fff;
  box-shadow: 0px -1px 9px rgba(38,70,83,0.07);
  padding-top:40px;
  margin-top:36px;
  font-size: 1rem;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #efede4;
  padding-bottom: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 155px;
}
.footer-nav a {
  color: #264653;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.19s;
}
.footer-nav a:hover { color: #E9C46A; }
.footer-contact {
  font-size: 1em;
  color: #264653;
  line-height:1.7;
  margin-bottom: 6px;
}
.footer-contact h3 { font-size:1.09em; margin-bottom:8px; }
.footer-contact address {
  font-style: normal;
  margin-bottom: 6px;
  color: #222;
}
.footer-contact p img {
  vertical-align: middle;
  margin-right: 7px;
  height: 20px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a img {
  height: 28px;
  width: 28px;
  filter: grayscale(0.2) brightness(0.93);
  transition: filter 0.21s, transform 0.19s;
}
.footer-social a:hover img {
  filter: none;
  transform: scale(1.13);
}
.footer-bottom {
  padding: 18px 0 10px 0;
  text-align: center;
  color:#B08B2F;
  font-size:0.95em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/**** MISCELLANEOUS: LISTS, ICONS, ETC. ****/
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1em;
  line-height: 1.6;
}
.catalog-section ul, .guarantee-section ul, .how-it-works-section ul, .features-section ul {
  list-style: none;
  padding-left: 0;
}
.catalog-section ul li, .guarantee-section ul li, .how-it-works-section ul li, .features-section ul li {
  padding-left: 0px;
  margin-bottom: 10px;
  position: relative;
  min-height:32px;
}
.guarantee-section ul li img {
  height: 24px; width: 24px; margin-right: 8px; vertical-align: middle; }

/**** CONTACT SECTION ****/
.contact-section ul {
  margin-bottom: 18px;
  list-style: none;
  padding-left: 0;
}
.contact-section ul li {
  margin-bottom: 10px;
  font-size: 1.08em;
}
.contact-info-message {
  background: #F6F6F6;
  padding: 14px 21px;
  border-radius: 10px;
  color: #264653;
  font-size:1em;
}

/**** BUTTON GENERIC ****/
button, .button, input[type=submit] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  outline: none;
  background: #E9C46A;
  color: #264653;
  padding: 12px 28px;
  border-radius:22px;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.17s;
  font-weight: 700;
}
button:hover,.button:hover,input[type=submit]:hover {
  background: #B08B2F;
  color: #fff;
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid #E9C46A;
  box-shadow: 0 -4px 28px rgba(38,70,83,0.10);
  z-index:9999;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.28s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.23s;
  opacity: 1;
  transform: translateY(0%);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  max-width: 580px;
  color: #264653;
  font-size:1.04em;
}
.cookie-banner .cookie-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top:2px;
  justify-content:center;
}
.cookie-banner button, .cookie-banner .button {
  min-width: 125px;
  padding: 10px 18px;
  font-size: 0.97rem;
  border-radius:18px;
  background: #E9C46A;
  color: #264653;
  font-weight: 700;
  border: none;
  box-shadow:0 1px 8px rgba(38,70,83,0.09);
  transition: background 0.14s, color 0.11s, box-shadow 0.18s;
}
.cookie-banner button:hover, .cookie-banner .button:hover {
  background: #B08B2F;
  color: #fff;
  box-shadow:0 4px 10px rgba(38,70,83,0.12);
}

/**** COOKIE MODAL ****/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(38,70,83,0.36);
  z-index:10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  min-width:320px;
  max-width: 98vw;
  box-shadow:0 8px 40px rgba(38,70,83,0.17);
  padding: 38px 32px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  color: #264653;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight:700;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1em;
  color: #264653;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  width: 20px; height: 20px;
  accent-color: #E9C46A;
  margin-right: 6px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #264653;
  cursor: pointer;
  transition: color 0.18s;
  z-index:11110;
}
.cookie-modal-close:hover { color: #E9C46A; }
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

/**** MEDIA QUERIES FOR RESPONSIVENESS ****/
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
  .main-nav { gap:20px; }
}
@media (max-width: 992px) {
  .footer-wrapper { flex-direction: column; gap: 24px; }
  .hero { padding: 44px 0 36px 0; }
}
@media (max-width: 850px) {
  .profile-grid > div, .feature-grid > div {
    flex: 1 1 100%;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 12px;
    flex-wrap: wrap;
    min-height: 64px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .profile-grid, .feature-grid, .content-grid, .testimonials-slider {
    flex-direction: column;
    gap: 18px;
  }
  .card-container { gap: 16px; }
  .card { min-width: 100%; padding: 18px 10px; }
  .section, section { padding:22px 6vw 22px 6vw; margin-bottom:42px; }
  .footer-wrapper {
    flex-direction:column;
    gap: 18px;
    padding-bottom:20px;
  }
  .footer-social { justify-content: start; }
  .hero {
    border-radius: 0 0 18px 18px;
    margin-bottom: 38px;
    padding: 30px 0 24px 0;
  }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
  .testimonials-slider {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 580px) {
  .container { padding: 0 10px; }
  .hero h1 { font-size: 1.55rem; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .section, section { padding:10px 2vw 16px 2vw; border-radius:10px; }
  .testimonial-card, .card, .feature-item, .profile-grid > div, .feature-grid > div { border-radius:8px; padding:15px 6px; }
}

/* Subtle fade in anims */
.fade-in { animation: fade-in 0.8s ease 0s both; }
@keyframes fade-in { from { opacity:0; transform:translateY(18px);} to { opacity:1; transform:none;} }

/**** LUXURY DETAILS & GOLDED ACCENTS ****/
.cta-button, .card, .profile-grid > div, .feature-grid > div, .testimonials-slider .testimonial-card, .feature-item {
  border: 1px solid #e7d59c0c;
  box-shadow: 0 6px 18px rgba(233,196,106,0.07);
}
.cta-button, .cookie-banner button, .cookie-banner .button {
  border:1.5px solid #E9C46A;
  /* gold shadow accent */
  box-shadow:0 2px 8px rgba(233,196,106,0.08);
}
hr {
  border: none;
  border-top: 1px solid #E9C46A;
  margin: 34px 0;
  opacity:0.35;
}

/**** FORMS (JUST IN CASE) ****/
input[type="text"], input[type="email"], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  border-radius: 10px;
  border:1.5px solid #EBEBE2;
  background: #fff;
  color: #264653;
  padding: 12px 17px;
  margin-bottom: 18px;
  outline:none;
  width: 100%;
  transition: border-color 0.13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #E9C46A;
}

/**** Z-INDEX FOR ALL LAYERED ELEMENTS ****/
header { z-index:30; }
.mobile-menu { z-index:1000; }
.cookie-banner { z-index:9999; }
.cookie-modal { z-index:10000; }

/**** UTILITY HELPER CLASSES ****/
.hide { display: none !important; }
.d-block { display: block !important; }

/* End of CSS */
