:root {
  --primary-color: #dfc673;
  --secondary-color: #222;
  --background-color: #f7f7f7;
  --bttnhvr-color: #171717;
  --accent-color: #171717;
  --text-color: #222;
  --border-radius: 12px;
  --transition: 0.2s all ease;
  --max-width: 1200px;
  --box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}


/* About Section */
.aboutmockup_efh_001 {
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 3rem 1rem;
  box-sizing: border-box;
}

.aboutmockupflex_efh_002 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 2.5rem;
}

.aboutmockuptext_efh_003 {
  flex: 1 1 500px;
  max-width: 600px;
}

.aboutmockuplabel_efh_004 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #222;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.aboutmockuptitle_efh_005 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.aboutmockupdesc_efh_006 {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
}

.aboutmockupbtns_efh_007 {
  display: flex;
  gap: 1.2rem;
}

.aboutmockupbtn1_efh_008 {
  background: var(--primary-color);
  color: #222;
  font-weight: bold;
  border-radius: 4px;
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
}

.aboutmockupbtn1_efh_008:hover,
.aboutmockupbtn1_efh_008:focus {
  background: #ffd666;
  color: #111;
  transform: scale(1.04);
}

.aboutmockupbtn2_efh_009 {
  background: var(--primary-color);
  color: #222;
  font-weight: bold;
  border-radius: 4px;
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
  opacity: 0.5;
}

.aboutmockupbtn2_efh_009:hover,
.aboutmockupbtn2_efh_009:focus {
  background: #ffeec2;
  color: #111;
  transform: scale(1.04);
}

.aboutmockupimg_efh_010 {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 220px;
}

.aboutmockupimg_efh_010 img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.13));
}

/* Responsivo */
@media (max-width: 900px) {
  .aboutmockupflex_efh_002 {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .aboutmockupimg_efh_010 {
    justify-content: center;
    width: 100%;
  }
  .aboutmockupimg_efh_010 img {
    max-width: 220px;
  }
}

@media (max-width: 600px) {
  .aboutmockup_efh_001 {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    min-height: 300px;
  }
  .aboutmockuptitle_efh_005 {
    font-size: 1.5rem;
  }
  .aboutmockupdesc_efh_006 {
    font-size: 1rem;
  }
  .aboutmockupbtn1_efh_008,
  .aboutmockupbtn2_efh_009 {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
}

/* Services Section */
.srvcs_efh_1k2l3 {
  margin-bottom: 2.5rem;
}

.srvcsflx_efh_4m5n6 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.srvbox_efh_7o8p9 {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  flex: 1 1 220px;
  max-width: 260px;
  padding: 2rem 1rem 1.5rem 1rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.srvbox_efh_7o8p9:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 6px 24px rgba(223, 198, 114, 0.30);
}

.srvbox_efh_7o8p9 img {
  margin-bottom: 1rem;
  width: 128px;
  height: 128px;
}

.srvbox_efh_7o8p9 h2 {
  font-size: 1.25rem;
  margin: 0.5rem 0 0.7rem 0;
  color: var(--secondary-color);
}

.srvbox_efh_7o8p9 p {
  font-size: 1rem;
  color: #444;
    text-align: justify;
}

/* CTA Section */
.cta_efh_2q3r4 {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
}

.cta_efh_2q3r4 h2 {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}

.ctabtn_efh_5s6t7 {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--accent-color);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}

.ctabtn_efh_5s6t7:hover,
.ctabtn_efh_5s6t7:focus {
  background: #fff;
  color: var(--primary-color);
  transform: scale(1.05);
}

/* Reviews Section */
.rev_efh_8u9v0 {
  background: #fff;
  box-shadow: var(--box-shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.rev_efh_8u9v0 h2 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}

.revlist_efh_1w2x3 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.revlist_efh_1w2x3 blockquote {
  font-style: italic;
  background: #1111110a;
  border-left: 4px solid var(--primary-color);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  max-width: 600px;
}

.revlist_efh_1w2x3 cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 900px) {
  .srvcsflx_efh_4m5n6 {
    flex-direction: column;
    align-items: center;
  }
  .srvbox_efh_7o8p9 {
    max-width: 100%;
    width: 90%;
  }
  main {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 600px) {
  .abt_efh_93jfd,
  .srvcs_efh_1k2l3,
  .cta_efh_2q3r4,
  .rev_efh_8u9v0 {
    padding: 1.2rem 0.5rem;
    margin-bottom: 1.5rem;
  }
  .ctabtn_efh_5s6t7 {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem 0;
  }
}

/* Serviços Principais Section */
.srvmain_efh_11aa {
  border-radius: 12px;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.srvmainflex_efh_22bb {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.srvmainbox_efh_33cc {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex: 1 1 240px;
  max-width: 320px;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.srvmainbox_efh_33cc p {
  text-align: justify;
}

.srvmainbox_efh_33cc img {
  margin-bottom: 1.1rem;
  width: 128px;
  height: 128px;
}

.srvmainbox_efh_33cc h2 {
  font-size: 1.18rem;
  margin: 0.5rem 0 1.2rem 0;
  color: var(--accent-color);;
  font-weight: 500;
}

.srvcta_efh_44dd {
  display: inline-block;
  padding: 0.7rem 1.7rem;
  background: var(--accent-color);;
  color: #fff;
  font-weight: bold;
  border-radius: 22px;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
}

.srvcta_efh_44dd:hover,
.srvcta_efh_44dd:focus {
  background: #ffcb60;
  color: var(--accent-color);;
  transform: scale(1.05);
}

.srvmainbox_efh_33cc:hover {
  transform: translateY(-6px) scale(1.03);
box-shadow: 0 6px 24px rgba(223, 198, 114, 0.12);
}

/* Como Trabalhamos Section */
.howwork_efh_55ee {
  border-radius: 12px;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.howworktitle_efh_66ff {
  font-size: 1.5rem;
  color: #0073e6;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.howworkflex_efh_77gg {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: space-between;
      flex-direction: row;
    align-items: stretch;
}

.howworkstage_efh_88hh {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex: 1 1 180px;
  max-width: 260px;
  padding: 1.7rem 1rem 1.3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.howworkstage_efh_88hh img {
  margin-bottom: 0.8rem;
  width: 128px;
  height: 128px;
}

.howworkstage_efh_88hh h3 {
  font-size: 1.05rem;
  margin: 0.4rem 0 0.7rem 0;
  color: #222;
  font-weight: 500;
}

.howworkstage_efh_88hh p {
  font-size: 0.97rem;
  color: #444;
  margin: 0;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 900px) {
  .srvmainflex_efh_22bb,
  .howworkflex_efh_77gg {
    flex-direction: column;
    align-items: center;
  }
  .srvmainbox_efh_33cc,
  .howworkstage_efh_88hh {
    max-width: 100%;
    width: 90%;
  }
}

@media (max-width: 600px) {
  .srvmain_efh_11aa,
  .howwork_efh_55ee {
    padding: 1.2rem 0.5rem;
    margin-bottom: 1.5rem;
  }
  .srvcta_efh_44dd {
    width: 100%;
    font-size: 1.07rem;
    padding: 1rem 0;
  }
}
/* Sobre Nós - Primeira Secção */
.aboutusmain_efh_aa11 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.aboutusflex_efh_bb22 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.aboutusleft_efh_cc33 {
  flex: 1 1 350px;
  min-width: 260px;
}

.aboutusleft_efh_cc33 h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.aboutusleft_efh_cc33 p {
  font-size: 1.1rem;
  color: #222;
  margin: 0;
}

.aboutusright_efh_dd44 {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutusright_efh_dd44 img {
  max-width: 180px;
  height: auto;
  border-radius: 12px;
}

/* Sobre Nós - História */
.abouthistory_efh_ee55 {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.abouthistorytitle_efh_ff66 {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.abouthistoryflex_efh_gg77 {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: center;
}

.abouthistorybox_efh_hh88 {
  background: var(--background-color);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex: 1 1 220px;
  max-width: 320px;
  min-width: 200px;
  padding: 1.7rem 1rem 1.3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.abouthistoryyears_efh_ii99 {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
}

.abouthistorybox_efh_hh88 img {
  margin-bottom: 0.7rem;
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.abouthistorybox_efh_hh88 p {
  font-size: 1rem;
  color: #333;
  margin: 0;
  text-align: justify;
}

/* Responsivo */
@media (max-width: 900px) {
  .aboutusflex_efh_bb22 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .aboutusright_efh_dd44 {
    align-self: center;
  }
  .abouthistoryflex_efh_gg77 {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .abouthistorybox_efh_hh88 {
    max-width: 100%;
    width: 90%;
  }
}

@media (max-width: 600px) {
  .aboutusmain_efh_aa11,
  .abouthistory_efh_ee55 {
    padding: 1.2rem 0.5rem;
    margin-bottom: 1.5rem;
  }
  .aboutusleft_efh_cc33 h1 {
    font-size: 1.3rem;
  }
  .abouthistorytitle_efh_ff66 {
    font-size: 1.1rem;
  }
}

.contactbg_efh_aa11 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  
}

.contactflex_efh_bb22 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.contactbox_efh_cc33 {
  background: rgba(255,255,255,0.93);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.13);
  padding: 2.2rem 2rem 1.5rem 2rem;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contactlogo_efh_dd44 {
  margin-bottom: 1.2rem;
  border-radius: 12px;
}

.contactinfo_efh_ee55 {
  text-align: center;
  margin-bottom: 1.4rem;
  color: #222;
}

.contactinfo_efh_ee55 p {
  margin: 0.3rem 0;
  font-size: 1rem;
}

.contactcta_efh_ff66 {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  margin-top: 0.5rem;
}

.contactbtn_efh_gg77 {
  display: block;
  width: 100%;
  padding: 0.9rem 0;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  font-size: 1.05rem;
  text-decoration: none;
  margin-bottom: 0;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  cursor: pointer;
  opacity: 0.75;
  
}

.contactbtn_efh_gg77:hover,
.contactbtn_efh_gg77:focus {
  background: var(--bttnhvr-color);
  color: #fff;
  transform: scale(1.03);
}

.contactbtnwhatsapp_efh_hh88 {
  background: var(--primary-color);
  opacity: 1;
}

.contactbtnwhatsapp_efh_hh88:hover,
.contactbtnwhatsapp_efh_hh88:focus {
  background: var(--bttnhvr-color);
  color: #fff;
  transform: scale(1.03);
}

/* Social Buttons */
.contactsocials_efh_ii99 {
  padding: 1.7rem 1.5rem 1.3rem 1.5rem;
  max-width: 600px;
  margin: 2.5rem auto 0 auto;
}
.contactsocialsfooter_efh_ii99 {
  max-width: 600px;
}
.contactsocialflex_efh_jj00 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.contactsocialbtn_efh_kk11 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f7ff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: background 0.18s, transform 0.18s;
  text-decoration: none;
}

.contactsocialbtn_efh_kk11:hover,
.contactsocialbtn_efh_kk11:focus {
  background: #0073e6;
  transform: scale(1.08);
}

.contactfb_efh_ll22:hover { background: #4267B2; }
.contactig_efh_mm33:hover { background: #E1306C; }
.contactli_efh_nn44:hover { background: #0077B5; }
.contacttw_efh_oo55:hover { background: #1DA1F2; }

.contactsocialbtn_efh_kk11 img {
  width: 32px;
  height: 32px;
  filter: none;
}

/* Responsivo */
@media (max-width: 700px) {
  .contactbox_efh_cc33 {
    max-width: 100%;
    padding: 1.2rem 0.5rem;
  }
  .contactbg_efh_aa11 {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    min-height: 320px;
  }
  .contactsocials_efh_ii99 {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

/* Header */

header {
  width: 100%;
  background: var(--accent-color);;
  position: relative;
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.htitle {
  position: relative;
  z-index: 2;
  margin: 0;
}

.my-image {
  width: 200px;
  height: auto;
  display: block;
}

.sticky-wrapper nav {
  background: var(--primary-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
}

nav ul li {
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover,
.nav-link.active {
  background: #dfc673;
  color: #181c2b;
}

/* Sticky nav when scrolling */
nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
}

/* Responsive design */
@media (max-width: 900px) {
  nav ul {
    gap: 1rem;
  }
  .my-image {
    width: 80px;
  }
  .hero {
    height: 120px;
  }
}

@media (max-width: 600px) {
  nav ul {
    gap: 0.5rem;
    padding: 0.7rem 0;
  }
  .my-image {
    width: 60px;
  }
  .hero {
    height: 80px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .headerwrap_efh_2025 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem 1rem;
  }
  .headnavlist_efh_2025 {
    gap: 1.1rem;
  }
}

@media (max-width: 600px) {
  .headerbrand_efh_2025 {
    font-size: 1rem;
  }
  .headerwrap_efh_2025 {
    padding: 0.5rem 0.5rem;
  }
  .headnavlink_efh_2025 {
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
  }
}

/* Footer */

.footer_efh_2025 {
  background: var(--accent-color);;
  color: #222;
  padding: 2.2rem 1.5rem 1.2rem 1.5rem;
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
  border-top: 1px solid #ececec;
}

.footerwrap_efh_2025 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footerbrand_efh_2025 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0073e6;
  letter-spacing: 0.01em;
}

.footerbrand_efh_2025 img {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.footernav_efh_2025 {
  margin: 0.5rem 0;
}

.footernavlist_efh_2025 {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footernavlink_efh_2025 {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
}

.footernavlink_efh_2025:hover,
.footernavlink_efh_2025:focus {
  color: #0073e6;
}

.footerlegal_efh_2025 {
  font-size: 0.97rem;
  color: #666;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footerlegalink_efh_2025 {
  color: #666;
  text-decoration: none;
  transition: color 0.18s;
}

.footerlegalink_efh_2025:hover,
.footerlegalink_efh_2025:focus {
  color: var(--primary-color);
}

.footercredit_efh_2025 {
  font-size: 0.93rem;
  color: #999;
  margin-top: 0.7rem;
  text-align: center;
}
.footercredit_efh_2025v2 {
  font-size: 0.7rem;
  color: #999;
  margin-top: 0.7rem;
  text-align: center;
}

/* Responsivo */
@media (max-width: 700px) {
  .footerwrap_efh_2025 {
    gap: 0.8rem;
  }
  .footernavlist_efh_2025 {
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_efh_2025 {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
  }
}

/* EFH Page H2 */
.centeredtext_efh {
  text-align: center;
  color: var(--accent-color);;
}

.main-title {
    font-size: .9rem;
    color: #171717;
    margin-bottom: 1.2rem;
    line-height: 0.1;
    letter-spacing: 0.01em;
}

/* Smartphones (max-width: 767px) */
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .main-title, h1 {
    font-size: 1.1rem;
    text-align: center;
    padding: 0.7rem 0.2rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  .policy-main {
    padding: 1rem 0.2rem;
  }
}

/* Tablets (min-width: 768px) and (max-width: 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  body {
    font-size: 16px;
  }
  .main-title, h1 {
    font-size: 1.3rem;
  }
  nav ul {
    gap: 1rem;
  }
  .policy-main {
    padding: 2rem 1rem;
  }
}

.policy-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3rem 1.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(223, 198, 114, 0.12);
  font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
}

.policy-section {
  color: #171717;
}

.policy-section h1 {
  font-size: 2.2rem;
  color: #dfc672;
  font-weight: 900;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.01em;
}

.policy-section h2 {
  font-size: 1.25rem;
  color: #0073e6;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}

.policy-section p {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.policy-section a {
  color: #0073e6;
  text-decoration: underline;
  transition: color 0.18s;
}

.policy-section a:hover,
.policy-section a:focus {
  color: #dfc672;
}

@media (max-width: 700px) {
  .policy-main {
    padding: 1.2rem 0.5rem 2rem 0.5rem;
    border-radius: 10px;
  }
  .policy-section h1 {
    font-size: 1.4rem;
  }
  .policy-section h2 {
    font-size: 1.05rem;
  }
  .policy-section p {
    font-size: 1rem;
  }
}




      .header-flex {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
      }

      .custom-clock {
        background: white;
        color: #111;
        padding: 10px 20px;
        border-radius: 12px;
        font-family: 'Courier New', monospace;
        font-size: 1.2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
      }

      .logo-center {
        width: 180px;
        height: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }

      .spacer {
        flex: 1;
      }

      header img {
        width: 180px;
        height: auto;
      }

      .grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
      }

      .tile {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform .2s;
        width: 150px;
        height: 150px;
      }

      .tile:hover {
        transform: scale(1.05);
        background: #f9f9f9;
      }

      .tile img {
        width: 64px;
        height: 64px;
        margin-bottom: 10px;
        object-fit: contain;
      }

      .tile p {
        margin: 0;
        color: #333;
        font-weight: bold;
      }

      a {
        text-decoration: none;
      }

      .dashboard-button {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #e0e0e0;
        color: black;
        padding: 10px 20px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 8px;
        transition: background-color .3s ease;
      }

      .dashboard-button:hover {
        background-color: #d4d4d4;
        cursor: pointer;
      }

      .dashboard-button:focus {
        outline: none;
        background-color: #c0c0c0;
      }

      .dashboard-button:active {
        background-color: #b0b0b0;
      }

      .section-wrapper {
        display: flex;
        justify-content: center;
        margin: 40px 0;
        padding: 20px;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-radius: 16px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        flex-wrap: wrap;
      }

      .section-wrapper .section {
        width: 100%;
      }

      /* New button grid */
      .button-grid {
        background-color: #e0e0e0;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 20px;
      }
      
      
      
