/* =======================================
   🔹 Header Styling 🔹
   ======================================= */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap');
body, html {
    margin: 0;
	background: #fff;
    padding: 0;
	font-family: 'General Sans';
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Fade-up reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.custom-header {
    background: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 4000;
    transition: all 0.3s ease-in-out;
}
.cky-btn-revisit-wrapper {

    display: none;
}
/* Top Bar Fixed at the Top */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: #066D9F;
    color: white;
    font-size: 14px;
   z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: -10px 0;
}

/* Top Bar Container */
.top-bar-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

/* Each Top Bar Item */
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icons */
.top-bar-icon {
    font-size: 16px;
}

/* Text and Links */
.top-bar-text {
    color: white;
	font-family: 'General Sans', sans-serif;
	font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.top-bar-text a {
    color: white;
font-family: 'General Sans', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.27px;
	    text-decoration: none;
}

.top-bar-text a:hover {
    text-decoration: none;
}

/* Hide address on mobile */
@media (max-width: 768px) {
       .top-bar-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: left;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
        justify-content: space-between;
	}

    .top-bar-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .top-bar-text,
    .top-bar-text a {
        font-size: 12px;
        
    }

    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    /* Hide the address block */
    .top-bar-item:last-child {
        display: none;
    }
}




/* Adjust header positioning */
.custom-header {
    margin-top: 0px; /* Adjust according to top bar height */
}

/* Navigation */
.primary-menu .menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.primary-menu .menu-items li {
    position: relative;
    padding: 15px;
	
}

.primary-menu .menu-items li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0;
    min-width: 280px;
    display: none;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.primary-menu .menu-items li:hover .sub-menu {
    display: block;
}

.primary-menu .menu-items li .sub-menu li {
    width: 100%;
    padding: 0;
}

.primary-menu .menu-items li .sub-menu li a {
    display: block;
    width: 260px;
    padding: 10px 15px;
    color: var(--Body, #656565);
    font-family: 'General Sans', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    border-radius: 4px;
}

.primary-menu .menu-items li .sub-menu li a:hover {
    background: #f5f5f5;
    color: #333;
}


/* Mobile Friendly */
@media (max-width: 768px) {
    .primary-menu .menu-items {
        flex-direction: column;
    }

    .primary-menu .menu-items li .sub-menu {
        position: relative;
    }
}


/* Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1240px;
	padding: 0 120px;
}
/* Logo */
.logo img {
  width: 34px;
height: 32px !important;
}
/* Navigation Menu */
.primary-menu {
    flex: 1; 
    display: flex;
    justify-content: center;
}
.primary-menu .menu-items {
    list-style: none;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}
.primary-menu .menu-items li {
    display: inline-block;
}
.primary-menu .menu-items li a {
    text-decoration: none;
 color: var(--Body, #656565);
font-family: 'General Sans', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
    padding: 10px 15px;
}

/* Active (current) menu item */
.primary-menu .menu-items li.current-menu-item a {
    color: black; 
font-family: 'General Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


/* Right Section (Button + Dropdown) */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-item-has-children > a {
    position: relative;
    padding-right: 20px; /* space for the arrow */
}

.menu-item--current-home > a {
  position: relative;
}

.menu-item--current-home > a::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px; /* adjust to place dot under text */
  width: 14px;
  height: 14px;
  background: #ffe54c;
  border-radius: 50%;
  box-shadow: 0 1px 3px #ccc4;
}


.menu-item-has-children > a::after {
    content: '';
    position: absolute;
    top: 55%;
    right: 10;
    width: 20px;
    height: 16px;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="16" viewBox="0 0 20 16" fill="none"><path d="M9.99958 8.98333L14.0106 4.84999L15.1427 6.03333L9.99958 11.3333L4.85645 6.03333L6.00476 4.84999L9.99958 8.98333Z" fill="%23656565"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
  color: var(--Body, #656565);
	font-family: 'General Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 22px; /* 157.143% */
	margin-bottom: 20px;
	
}
/* Hide default checkbox */
.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ffff !important;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    outline: none;
    background-color: white;
    transition: all 0.2s ease-in-out;
}

.page-id-133 .checkbox-group input[type="checkbox"] {

    border: 1px solid #333 !important;
    border-radius: 3px;

}

/* Change checkbox background color when checked */
.checkbox-group input[type="checkbox"]:checked {
    background-color: #066D9F;
}

/* Add checkmark (✔) when checked */
.checkbox-group input[type="checkbox"]:checked::after {
    content: '✔';
    font-size: 14px;
    color: white;
    position: absolute;
    left: 2px;
    top: -3px;
    font-weight: 400;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkbox-group a {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.checkbox-group a i {
    font-size: 14px;
    margin-left: 5px;
}


/* Apply Now Button */
.apply-button {
    background: #FFF800;
    color: #595959;
text-align: center;
font-family: "General Sans";
font-size: 16px;
font-style: medium;
font-weight: 500;
line-height: normal;
    padding: 10px 28px; 
border-radius: 8px;
box-shadow: 0px 0px 0px 0.5px rgba(6, 8, 16, 0.25), 0px 2px 4px -2px rgba(0, 0, 0, 0.30), 0px -1px 0.5px 0px rgba(0, 0, 0, 0.05) inset, 0px -1px 3px -1px rgba(0, 0, 0, 0.10) inset, 0px 1px 0.5px 0px rgba(255, 255, 255, 0.50) inset;
    text-decoration: none;
    border: none;
	margin-left: 15px;

}


.page-id-1068 p {
    font-size: 15px !important;
font-family: 'General Sans', sans-serif;
	font-weight: 300;
}

.page-id-1066 p {
    font-size: 15px !important;
	font-family: 'General Sans', sans-serif;
	font-weight: 300;
}
			.page-id-1068 strong {
font-size: 28px;
 }
			.page-id-1066 strong {
font-size: 28px;
 }

.mobile-menu { display: none;}
.mobile-menu-icon {
        display: none;
    }


/* =======================================
   🔹 Footer Styling 🔹
   ======================================= */
.custom-footer {
   background: #222 !important;
    color: white !important;
    padding: 60px 20px 20px;
    font-size: 16px;
}
	h2.first-footer{
		font-size: 40px !important;
font-style: normal;
font-weight: 500 !important;
line-height: normal;
		font-family: 'General Sans', sans-serif;

	}

.footer1{
	color: white !important;
font-family: 'General Sans', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 0; 
letter-spacing: 0.28px;
}

.footer2{
	color: white !important;
font-family: 'General Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 0; 
letter-spacing: 0.28px;
}

/* Footer Content */
.footer-content {
    padding: 50px 0;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer-column {
    width: 10%;
}
/* Container spacing, if not already set */
.footer-column1 {
  display: flex;
  flex-direction: column;
  gap: 8px;              /* spacing between each link */
}

/* Header “SITEMAP” */
.footer-column1 h4 {
color: white;
font-family: 'General Sans', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.28px;
}

/* Reset default <p> margins */
.footer-column1 .email1 {
  margin: 0;
}

/* Links styling */
.footer-column1 .email1 a {
  display: block;        /* full-width click area */
color: var(--Light-grey, #B8B8B8);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
  text-decoration: none;
}


/* Column container */
.footer-column2 {
  display: flex;
  flex-direction: column;
  gap: 8px;          /* even spacing between items */
}

/* Column header (“SERVICES”) */
.footer-column2 h3 {
color: var(--White, #FFF);
font-family: "General Sans";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

/* Remove default p margin */
.footer-column2 .email1 {
  margin: 0;
}

/* Service links */
.footer-column2 .email1 a {
  display: block;        /* full-width click area */
color: var(--Light-grey, #B8B8B8);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
  text-decoration: none;
}



.footer-column h3 {
color: var(--Body, #656565);
font-family: 'General Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 1.12px;
}

ul#menu-footer-menu1{
	margin-left: 170px;
}

.footer-column h4 {
color: var(--Body, #656565);
font-family: 'General Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: 1.12px;
	text-align: center;
}


.footer-column p {
color: #B8B8B8;
font-family: 'General Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
}
.footer-column img {
    width: 150px;
    margin-bottom: 10px;
}
.footer-column a {
    color: white;
    text-decoration: none;
   
}

.footer-column2 a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s;
}

.footer-column2 a:hover {
    color: #FFF800 !important;
    opacity: 1;
}

/* Footer Menu */
.footer-menu .footer-items {
    list-style: none;
    padding: 0;
	
}
.footer-menu .footer-items li {
    margin-bottom: 10px;
}
.email1 a,
.number1 a,
.map1 a {
color: #B8B8B8;
font-family: 'General Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
}
.email1 a:hover,
.number1 a:hover,
.map1 a:hover {
    color: #FFF800 !important;
}
.footer-menu .footer-items li a {
color: #B8B8B8;
font-family: 'General Sans', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;

}
.footer-menu .footer-items li a:hover {
    opacity: 1;
}
/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;
    border-top: 1px solid #e0e0e0;
   font-family: 'General Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #B8B8B8;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
   font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
	color: #B8B8B8;
font-family: 'General Sans', sans-serif;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* =======================================
   🔹 Home Page 🔹
   ======================================= */

.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('https://www.pruefblatt.at//wp-content/uploads/2025/06/house-with-solar-panels-roof-sustainable-photovoltaic-systems-as-renewable-energy.webp') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.55); /* Dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-content h1 {
color: var(--White, #FFF);
text-align: center;
font-family: "General Sans";
	margin-bottom: 16px;
font-size: 56px;
font-style: normal;
font-weight: 600;
line-height: normal;
}


.hero-content p {
 color: var(--White, #FFF);
text-align: center;
font-family: "General Sans";
	
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}

:root { --primary-yellow: #FFF800; }

.hero-button {
  display: inline-block;
  background: #ffe54c;
color: var(--Grey, #595959);
text-align: center;
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
	box-shadow: 0px 0px 0px 0.5px rgba(6, 8, 16, 0.25), 0px 2px 4px -2px rgba(0, 0, 0, 0.30), 0px -1px 0.5px 0px rgba(0, 0, 0, 0.05) inset, 0px -1px 3px -1px rgba(0, 0, 0, 0.10) inset, 0px 1px 0.5px 0px rgba(255, 255, 255, 0.50) inset;
padding: 14px 32px;
  border-radius: 10px;
  box-shadow: 0 2px 8px #2222;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: color 0.25s cubic-bezier(.68,-0.25,.39,1.45);
}
.hero-button span {
  position: relative;
  z-index: 2;
  transition: color 0.18s;
}
.hero-button::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  background: #111;
  z-index: 1;
  transition: all 0.33s cubic-bezier(.68,-0.25,.39,1.45);
  border-radius: 10px;
  transform: skewX(15deg);
}
.hero-button:hover {
  color: var(--primary-yellow);
}
.hero-button:hover::after {
  left: -10%;
  width: 120%;
}
.hero-button span {
  position: relative;
  z-index: 2;
  transition: color 0.18s;
}



/* Responsive */
@media (max-width: 700px) {
  .hero-content h1,
  .hero-content h1 span {
    font-size: 2rem;
  }
  .hero-content {
    padding: 1rem;
  }
}
.elektro-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #222;
  padding: 120px;
  gap: 64px;
}

.elektro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  width: 650px;
}

.elektro-stat-card {
  background: #FFF800;
  border-radius: 16px;
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 220px;
  min-width: 220px;
  grid-column: 1/2;
  grid-row: 1/2;
}

.elektro-stat-number {
color: var(--Black, #222);
font-family: "General Sans";
font-size: 88px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.elektro-stat-number span {
  color: var(--Black, #222);
font-family: "General Sans";
font-size: 88px;
font-style: normal;
font-weight: 400 !important;
line-height: normal;
}

.elektro-stat-label {
color: var(--Black, #222);
font-family: "General Sans";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.elektro-stat-label strong { font-weight: 700; }

.elektro-img {
  position: relative;
border-radius: 16px;
  overflow: hidden;
  background: none;
  min-height: 259px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.elektro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	border-radius: 16px;

}
.elektro-img-top {
  grid-column: 2/3;
  grid-row: 1/2;
}
.elektro-img-bottom {
  grid-column: 1/3;
  grid-row: 2/3;
  min-height: 160px;
}
.elektro-img-bottom img {
  height: 289px;
  object-fit: cover;
}

.elektro-icon {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 75px;
  height: 75px;
  pointer-events: none;
  opacity: 0.85;
}

.elektro-content {
  flex: 1 1 350px;
  color: #fff;
  max-width: 530px;
  margin-top: 100px;
}

.elektro-content h2 {
  color: var(--White, #FFF);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 22px;
}

.elektro-content p {
  margin-bottom: 24px;
  color: var(--Light-grey, #B8B8B8);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}

.elektro-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 38px;
}
.elektro-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
color: var(--Light-grey, #B8B8B8);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}
.elektro-content ul li::before {
  content: '✔';
  color: #FFF800;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0;
}

.elektro-btn {
  display: inline-block;
  background: #FFF800;
  color: #222;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 0.9em 2.1em;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #2223;
}
.elektro-btn:hover {
  background: #fff;
  color: #111;
}

.elektro-section1 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #222;
  padding: 120px;
  gap: 64px;
}

.elektro-grid1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  width: 650px;
}

.elektro-stat-card1 {
  background: #FFF800;
  border-radius: 16px;
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 220px;
  min-width: 220px;
  grid-column: 1/2;
  grid-row: 1/2;
}

.elektro-stat-number1 {
  color: var(--Black, #222);
  font-family: "General Sans";
  font-size: 88px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.elektro-stat-number1 span {
  color: var(--Black, #222);
  font-family: "General Sans";
  font-size: 88px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}

.elektro-stat-label1 {
  color: var(--Black, #222);
  font-family: "General Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.elektro-stat-label1 strong {
  font-weight: 700;
}

.elektro-img1 {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: none;
  min-height: 259px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elektro-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.elektro-img-top1 {
  grid-column: 2/3;
  grid-row: 1/2;
}

.elektro-img-bottom1 {
  grid-column: 1/3;
  grid-row: 2/3;
  min-height: 160px;
}

.elektro-img-bottom1 img {
  height: 289px;
  object-fit: cover;
}

.elektro-icon1 {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 75px;
  height: 75px;
  pointer-events: none;
  opacity: 0.85;
}

.elektro-content1 {
  flex: 1 1 350px;
  color: #fff;
  max-width: 530px;
  margin-top: 100px;
}

.elektro-content1 h2 {
  color: var(--White, #FFF);
  font-family: "General Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 22px;
}

.elektro-content1 p {
  margin-bottom: 24px;
  color: var(--Light-grey, #B8B8B8);
  font-family: "General Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.elektro-content1 ul {
  list-style: none;
  padding: 0;
  margin-bottom: 38px;
}

.elektro-content1 ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: var(--Light-grey, #B8B8B8);
  font-family: "General Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.elektro-content1 ul li::before {
  content: '✔';
  color: #595959;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0;
}

.elektro-btn1 {
  display: inline-block;
  background: #FFF800;
  color: #222;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 0.9em 2.1em;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #2223;
}

.elektro-btn1:hover {
  background: #fff;
  color: #111;
}


/* Responsive */
@media (max-width: 1100px) {
  .elektro-section {
    flex-direction: column;
    align-items: center;
    gap: 38px;
    padding: 50px 0;
  }
  .elektro-grid {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .elektro-section {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 40px;
  }

  .elektro-content {
    margin-top: 0;
    max-width: 100%;
    text-align: left;
  }

  .elektro-content h2 {
    font-size: 24px;
  }

  .elektro-content p,
  .elektro-content ul li {
    font-size: 15px;
    line-height: 24px;
  }

  .elektro-content ul li {
    padding-left: 24px;
  }

  .elektro-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    gap: 24px;
  }

  .elektro-stat-card,
  .elektro-img,
  .elektro-img-bottom {
    min-width: unset;
    min-height: auto;
    width: 100%;
    height: auto;
  }

  .elektro-stat-card {
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .elektro-stat-number,
  .elektro-stat-number span {
    font-size: 64px;
  }

  .elektro-stat-label {
    font-size: 18px;
  }

  .elektro-img img,
  .elektro-img-bottom img {
    height: auto;
    max-height: 320px;
    object-fit: cover;
    width: 95%;
  }

  .elektro-icon {
    left: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
  }

  .elektro-btn {
    width: 100%;
    text-align: center;
    padding: 0.9em 1em;
  }
}

@media (max-width: 768px) {
  .elektro-section1 {
    flex-direction: column;
    align-items: center;
   padding: 140px 20px 60px 20px;
    gap: 40px;
  }

  .elektro-content1 {
    margin-top: 0;
    max-width: 100%;
    text-align: left;
  }

  .elektro-content1 h2 {
    font-size: 24px;
  }

  .elektro-content1 p,
  .elektro-content1 ul li {
    font-size: 15px;
    line-height: 24px;
  }

  .elektro-content1 ul li {
    padding-left: 24px;
  }

  .elektro-grid1 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    gap: 24px;
  }

  .elektro-stat-card1,
  .elektro-img1,
  .elektro-img-bottom1 {
    min-width: unset;
    min-height: auto;
    width: 100%;
    height: auto;
  }

  .elektro-stat-card1 {
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .elektro-stat-number1,
  .elektro-stat-number1 span {
    font-size: 64px;
  }

  .elektro-stat-label1 {
    font-size: 18px;
  }

  .elektro-img1 img,
  .elektro-img-bottom1 img {
    height: auto;
    max-height: 320px;
    object-fit: cover;
    width: 95%;
  }

  .elektro-icon1 {
    left: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
  }

  .elektro-btn1 {
    width: 100%;
    text-align: center;
    padding: 0.9em 1em;
  }
}


.services-section {
  background: #fff;
  padding: 104px 0 104px 0;
}

.services-container {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  gap: 60px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 38px;
}

/* Left column */
.services-intro {
  flex: 1 1 400px;
  max-width: 500px;
}
.services-intro h2 {
  margin-bottom: 32px;
color: var(--Black, #222);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.services-intro p {
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 171.429% */
  margin-bottom: 36px;
}
.services-cta {
  display: inline-block;
  background: #FFF800;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  padding: 0.9em 2em;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 8px #2222;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}
.services-cta:hover {
  background: #fff38a;
  color: #222;
  box-shadow: 0 3px 12px #2223;
}

/* Right column - cards grid */
.services-cards {
  flex: 2 1 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 34px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #e8e8e8;
  box-shadow: 0 3px 12px #0001;
padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 290px;
  min-height: 186px;
  transition: box-shadow 0.14s, border 0.14s;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0%;
  height: 100%;
  background: #FFF800;
  z-index: 0;
  transition: width 0.45s cubic-bezier(.48,1.46,.62,1);
}

.service-card:hover::before {
  width: 100%;
}

.service-card * {
  position: relative;
  z-index: 1;
  transition: color 0.18s;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  color: #222 !important;
}

.service-card:hover .service-icon {
  filter: grayscale(0) brightness(1) !important;
}

/* Optional: keep border highlight */
.service-card:hover {
  border: 2px solid #ffe54c;
  box-shadow: 0 5px 22px #ffe54c2a;
}

.service-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
  filter: grayscale(1) brightness(0.7);
}

.service-card h3 {
  color: var(--Black, #222);
font-family: "General Sans";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 13px;
}
.service-card p {
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
  margin-bottom: 22px;
}
.service-card a {
  text-decoration: none;
 color: var(--Black, #222);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
  margin-top: auto;
  transition: color 0.15s;
}
.service-card a:hover {
  color: #e0c300;
}

/* Responsive */
@media (max-width: 1000px) {
  .services-container {
    flex-direction: column;
    gap: 46px;
    padding: 0 14px;
  }
  .services-intro {
    max-width: 100%;
  }
  .services-cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    min-width: 0;
  }
}

.section-padding {
  padding: 120px 100px;
}
@media (max-width: 700px) {
  .section-padding {
    padding: 70px 24px;
  }
}

.elektro-list-section {
  background: #fafafb;
	
}

.elektro-list-container {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
}

.elektro-list-image {
  flex: 1 1 500px;
  max-width: 600px;
}
.elektro-list-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 6px 32px #aaa1;
}

.elektro-list-content {
  flex: 1 1 440px;
  max-width: 600px;
}

.elektro-list-content h2 {
  margin-bottom: 36px;
color: var(--Black, #222);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.elektro-list-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.elektro-list-content li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 34px;
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
}

.elektro-list-icon {
  width: 32px;
  height: 32px;
  margin-right: 22px;
  flex-shrink: 0;
  opacity: 0.85;
  margin-top: 2px;
}

@media screen and (max-width: 765px) {
  .elektro-list-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px;
    gap: 40px;
  }

  .elektro-list-content {
    max-width: 100%;
    text-align: left;
  }

  .elektro-list-content h2 {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .elektro-list-content li {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 26px;
  }

  .elektro-list-icon {
    width: 28px;
    height: 28px;
    margin-right: 16px;
    margin-top: 3px;
  }

  .elektro-list-image {
    width: 100%;
	  flex: 1 1 0px;
    max-width: 100%;
  }

  .elektro-list-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px #aaa1;
  }
}

.pv-section-stairs {
  background: #fff;
  padding: 0;
}
.pv-stairs-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 0 120px 0;
}
.pv-stairs-row-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 72px;

}
.pv-stairs-heading {
  flex: 1 1 410px;
  min-width: 270px;
}
.pv-stairs-heading h2 {
color: var(--Black, #222);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.pv-stairs-description {
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 171.429% */
  padding-top: 10px;
  max-width: 600px;
}

.pv-stairs-row-bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
}

.pv-stairs-steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex: 2 1 1200px;
  gap: 0;
  min-width: 0;
}
.pv-step {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
border-left: 1px solid rgba(160, 160, 160, 0.20);
  min-width: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  position: relative;
}
.pv-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 22px;
  background-color: #222;
  border-radius: 10%;
  z-index: 2;
}

/* "Staircase" effect */
.pv-step-1 { margin-top: 0px; }
.pv-step-2 { margin-top: 80px; }
.pv-step-3 { margin-top: 120px; }

.pv-step-bar {
  width: 0;
  min-width: 0;
}

.pv-step-content {
  padding: 0 38px 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pv-step-title {
 color: var(--Black, #222);
font-family: "General Sans";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 15px;
  margin-top: 0;
}
.pv-step-desc {
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}

.pv-stairs-image {
  flex: 1 1 340px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 0;
}
.pv-stairs-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 32px #bbb1;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .pv-stairs-container { padding: 44px 0 0 0; }
  .pv-stairs-row-top, .pv-stairs-row-bottom { flex-direction: column; gap: 32px; }
  .pv-stairs-image { justify-content: flex-start; }
  .pv-stairs-steps { flex-direction: column; }
  .pv-step, .pv-step-1, .pv-step-2, .pv-step-3 { margin-top: 0 !important; }
}
@media screen and (max-width: 765px) {
	
	.services-section {

  padding: 50px 0;
}
  .pv-stairs-container {
    padding: 60px 20px;
  }

  .pv-stairs-row-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }

  .pv-stairs-heading {
    width: 100%;
	  flex: 1 1 0px;
  }

  .pv-stairs-heading h2 {
    font-size: 26px;
  }

  .pv-stairs-description {
    font-size: 14px;
    line-height: 22px;
    padding-top: 6px;
  }

  .pv-stairs-row-bottom {
    flex-direction: column;
    gap: 40px;
  }

  .pv-stairs-steps {
    flex-direction: column;
    gap: 40px;
	      flex: 2 1 0px;
  }

  .pv-step {
    border-left: none;
    border-top: 1.5px solid #dedede;
    flex-direction: column;
    padding-top: 20px;
  }

  .pv-step-1,
  .pv-step-2,
  .pv-step-3 {
    margin-top: 0 !important; /* remove "stair" gaps for mobile */
  }

  .pv-step-content {
    padding: 0;
  }

  .pv-step-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .pv-step-desc {
    font-size: 15px;
    line-height: 24px;
  }

  .pv-stairs-image {
    justify-content: center;
  }

  .pv-stairs-image img {
    width: 400px;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 4px 24px #bbb1;
  }
}



/* =======================================
   🔹 About Page 🔹
   ======================================= */

:root { --primary-yellow: #FFF800; }

.aboutus-section {
  background: #fafafb;
  padding: 120px 0 120px 0;
}
.aboutus-container {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
  padding: 120px;
}
.aboutus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 22px;
  width: 400px;
  min-width: 320px;
}
.aboutus-stat-card {
  background: var(--primary-yellow);
  border-radius: 20px;
  padding: 35px 25px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 150px;
  grid-column: 1/2; grid-row: 1/2;
  box-sizing: border-box;
}
.aboutus-stat-number {
  font-size: 2.9rem;
  font-weight: 700;
  color: #222;
  letter-spacing: -2px;
  line-height: 1.1;
}
.aboutus-stat-number span {
  font-size: 1.9rem;
  font-weight: 400;
}
.aboutus-stat-label {
  margin-top: 18px;
  color: #222;
  font-size: 1.13rem;
}
.aboutus-stat-label strong { font-weight: 700; }
.aboutus-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutus-img-top {
  grid-column: 2/3; grid-row: 1/2;
}
.aboutus-img-bottom {
  grid-column: 1/3; grid-row: 2/3;
  min-height: 140px;
}
.aboutus-img-bottom img { height: 170px; object-fit: cover; }
.aboutus-img-icon {
  position: absolute;
  left: 18px; top: 18px;
  width: 56px; height: 56px;
  pointer-events: none;
  opacity: 0.93;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutus-content {
  flex: 1 1 520px;
  color: #222;
  max-width: 530px;
  margin-top: 14px;
}
.aboutus-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.aboutus-content p {
  font-size: 1.09rem;
  margin-bottom: 21px;
  color: #444;
  line-height: 1.6;
}
.aboutus-content ul {
  list-style: none;
  padding: 0; margin-bottom: 38px;
}
.aboutus-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 1.07rem;
  color: #444;
}
.aboutus-content ul li::before {
  content: '✔';
	color: #333;
  font-size: 1rem;
  position: absolute;
  left: 0; top: 0;
}
.aboutus-btn {
  display: inline-block;
  background: var(--primary-yellow);
  color: #222;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 0.85em 2.1em;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 8px #2221;
  border: 1.5px solid #ececec;
}
.aboutus-btn:hover {
  background: #fff;
  color: #000;
  border-color: var(--primary-yellow);
}

@media (max-width: 1050px) {
  .aboutus-container { flex-direction: column; gap: 48px; }
  .aboutus-content { margin-top: 0; max-width: 100%; }
  .aboutus-grid { width: 100%; max-width: 480px; }
}
@media (max-width: 700px) {
  .aboutus-section { padding: 44px 0; }
  .aboutus-container { padding: 0 12px; }
  .aboutus-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 1fr); gap: 12px; }
  .aboutus-img-top { grid-column: 1/2; grid-row: 2/3; }
  .aboutus-img-bottom { grid-column: 1/2; grid-row: 3/4; }
  .aboutus-stat-card { grid-column: 1/2; grid-row: 1/2; }
}
.low-consumption-section {
  background: #fff;
  padding: 120px 0 120px 0;
  width: 100%;
}

.low-consumption-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1240px;
  margin: 0 auto 60px auto;
  gap: 96px;
}
.low-stat {
  flex: 1 1 0;
  min-width: 200px;
  text-align: left;
}
.low-stat-number {
color: var(--Black, #222);
font-family: "General Sans";
font-size: 56px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 14px;
}
.low-stat-label {
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 171.429% */
  margin-bottom: 0;
  margin-top: 0;
}

.low-consumption-top {
  max-width: 1240px;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: flex-start;
  gap: 36px;
}
.low-consumption-title {
  flex: 1 1 340px;
 color: var(--Black, #222);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 0;
}
.low-consumption-desc {
  flex: 2 1 500px;
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 171.429% */
  margin-top: 6px;
}

.low-consumption-cards {
  max-width: 250px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: flex-end;
	flex-direction: row-reverse;
}
.low-card {
  background: #fff;
  border: 2px solid #ededed;
  border-radius: 15px;
  box-shadow: 0 3px 14px #0001;
  flex: 1 1 0;
padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 190px;
  transition: box-shadow 0.16s, border-color 0.16s;
}
.low-card:hover {
  box-shadow: 0 6px 30px #eaeaea77;
  border-color: #FFF800;
}
.low-card-icon {
  margin-bottom: 18px;
  width: 32px;
  height: 32px;
}
.low-card-text {
 color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
}

@media (max-width: 1050px) {
  .low-consumption-stats,
  .low-consumption-top,
  .low-consumption-cards {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .low-consumption-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .low-card {
    width: 100%;
    min-width: 0;
  }
}
@media screen and (max-width: 765px) {
  .low-consumption-section {
    padding: 50px 20px;
	  width: 80%;
  }


  .low-consumption-top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .low-consumption-title {
    flex: none;
    font-size: 26px;
  }

  .low-consumption-desc {
    flex: none;
    font-size: 14px;
    line-height: 22px;
  }

  .low-consumption-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 40px;
  }

  .low-stat {
    flex: none;
    min-width: 100%;
  }

  .low-stat-number {
    font-size: 42px;
    margin-bottom: 8px;
  }

  .low-stat-label {
    font-size: 13.5px;
    line-height: 22px;
  }

  .low-consumption-cards {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
  }

  .low-card {
    flex: none;
    width: 100%;
    min-width: unset;
    padding: 16px;
  }

  .low-card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
  }

  .low-card-text {
    font-size: 13.5px;
    line-height: 21px;
  }
}

.energy-section {
  padding: 120px 0;
  background: #F8F8F8;
  font-family: 'General Sans', sans-serif;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  color: var(--Black, #222);
  font-family: 'General Sans', sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.3px;
  margin-bottom: 40px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 104px;
}

.column {
  flex: 1;
  min-width: 300px;
  display: flex;
	gap: 34px;
  flex-direction: column;
}

.text-block {
  color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}


.investments-intro-section {
  background: #fafafa;
  padding: 70px 0 70px 0;
}

.investments-intro-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 0 32px;
}

.investments-intro-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
}

.investments-intro-left h2 {
 color: var(--Black, #222);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.3px;
  margin-bottom: 28px;

}

.investments-intro-left,
.investments-intro-right-text {
  flex: 1 1 300px;
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
letter-spacing: 0.3px;
}

.investments-intro-image {
  flex: 1 1 300px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.investments-intro-image img {
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  box-shadow: 0 3px 18px #ccc3;
  display: block;
}

@media (max-width: 1000px) {
  .investments-intro-container { gap: 36px; }
  .investments-intro-row { flex-direction: column; gap: 24px; }
  .investments-intro-image img { max-width: 100%; }
}

@media (max-width: 600px) {
  .investments-intro-section { padding: 36px 0 36px 0; }
  .investments-intro-container { padding: 0 8px; }
  .investments-intro-left h2 { font-size: 1.2rem; }
}

:root {
  --primary-yellow: #FFF800;
}

/* ===== Hero Storage (no :root, no badge) ===== */
.c-hero-storage{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
 
  background-image: var(--bg, none);
  background-size: cover;
  background-position: center;
  place-items: stretch;
  isolation: isolate;
	margin-bottom:120px;
}

.c-hero-storage__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(32px, 6vw, 72px) clamp(16px, 4vw, 40px);
  align-items: end;
  height: 100%;
}

.c-hero-storage__text{ max-width: 980px; }

.c-hero-storage__title{
  margin: 0 0 .35em 0;
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  font-size: clamp(28px, 5vw, 32px);
  letter-spacing: -0.01em;
}

.c-hero-storage__subtitle{
  margin: 0;
  color: #e7e7e7;
  font-size: clamp(16px, 2.2vw, 16px);
  line-height: 1.5;
}

.c-hero-storage__aside{
  display: grid;
  gap: 16px;
  justify-items: end;
  align-content: end;
}

.c-hero-storage__btn{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  background: #FFF800;          /* yellow pill */
  color: #595959;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: transform .08s ease, background-color .15s ease, box-shadow .15s ease;
}
.c-hero-storage__btn:hover{
  background:#FFF801;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.c-hero-storage__btn:focus-visible{
  outline: 3px solid #111;
  outline-offset: 2px;
}

/* Responsive stacking */
@media (max-width: 900px){
  .c-hero-storage__inner{ grid-template-columns: 1fr; align-items: start;  }
  .c-hero-storage__aside{ justify-items: start; }
}


/* =======================================
   🔹 Contact Page 🔹
   ======================================= */

.contact-hero-section {
  position: relative;
  min-height: 0vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #222;
	padding: 120px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('https://www.pruefblatt.at/wp-content/uploads/2025/06/kontakt.png') center center/cover no-repeat;
}
.contact-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

/* Main content layout */
.contact-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 0 0px;
  min-height: 0vh;
  box-sizing: border-box;
}

/* Left Info */
.contact-hero-info {
  color: #fff;
  flex: 1 1 430px;
  min-width: 320px;
  max-width: 600px;
  margin-right: 48px;
}
.contact-hero-info h2 {
color: var(--White, #FFF);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.3px;
  margin-bottom: 40px;
  margin-top: 0;
}
.contact-hero-list {
  font-size: 1.08rem;
}
.contact-hero-label {
  margin-top: 23px;
  margin-bottom: 5px;
 color: var(--Light-grey, #B8B8B8);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.contact-hero-value {
 color: var(--White, #FFF);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 7px;
}
.contact-hero-value a {
  color: var(--White, #FFF);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
  text-decoration: none !important;
  transition: color 0.16s;

}
.contact-hero-value a:hover {
  color: var(--primary-yellow);
}

.contact-hero-privacy{
  grid-column: 1 / -1;         
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 16px;
}

/* Checkbox itself */
.contact-hero-privacy input[type="checkbox"]{
  flex: 0 0 auto;
  width: 18px;
	margin: 10px 0;
  height: 18px;
  accent-color: #FFF800;        
}

/* Text */
.contact-hero-privacy label{
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #222;
}

/* Link style */
.contact-hero-privacy a{
  color: #595959;
  text-decoration: underline;
}
.contact-hero-privacy a:hover{
  text-decoration: none;
}


/* Right Form Card */
.contact-hero-form {
  background: #fff;
  border-radius: 20px;
  padding: 46px 54px 40px 54px;
  box-shadow: 0 8px 38px #1b1c2133;
  min-width: 360px;
  max-width: 460px;
  width: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-hero-form h3 {
  margin-bottom: 14px;
  color: var(--Black, #222);
font-family: "General Sans";
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.3px;
}

.contact-hero-form-desc {
  color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 0.3px;
  margin-bottom: 22px;
}

.contact-hero-form input,
.contact-hero-form textarea {
  width: 100%;
  color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
  background: none;
  border: none;
  border-bottom: 1.5px solid #ececec;
  outline: none;
  margin-bottom: 22px;
  padding: 14px 0 10px 0;
  resize: none;
  transition: border-color 0.14s;
}
.contact-hero-form input:focus,
.contact-hero-form textarea:focus {
  border-bottom: 1.5px solid var(--primary-yellow);
}
.contact-hero-form textarea {
  min-height: 56px;
  max-height: 180px;
}

.contact-hero-form button {
  margin-top: 10px;
  background: var(--primary-yellow);
 color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
  border: none;
border-radius: 8px;
padding: 14px 32px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.13s;
  box-shadow: 0px 0px 0px 0.5px rgba(6, 8, 16, 0.25), 0px 2px 4px -2px rgba(0, 0, 0, 0.30), 0px -1px 0.5px 0px rgba(0, 0, 0, 0.05) inset, 0px -1px 3px -1px rgba(0, 0, 0, 0.10) inset, 0px 1px 0.5px 0px rgba(255, 255, 255, 0.50) inset;
}
.contact-hero-form button:hover {
  background: #fff700;
  color: #000;
}

@media (max-width: 1050px) {
  .contact-hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 0 14px;
    min-height: unset;
  }
  .contact-hero-info {
    margin: 0 0 40px 0;
    max-width: 100%;
  }
  .contact-hero-form {
    max-width: 100%;
    padding: 34px 10vw 34px 10vw;
    min-width: 0;
  }
}
@media screen and (max-width: 765px) {
	
	.page-id-29  .contact-hero-content {
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 0px;
    min-height: auto;
    gap: 0px;
  }
	.energy-flex-image img{
		height: 350px !important;
	}
  .contact-hero-content {
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 0px;
    min-height: auto;
    gap: 0px;
  }

  .contact-hero-info {
    width: 100%;
    max-width: 100%;
	   flex: 1 1 0px;
    margin-right: 0;
    text-align: left;
  }

  .contact-hero-info h2 {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .contact-hero-label {
    font-size: 13px;
    margin-top: 18px;
    margin-bottom: 4px;
  }

  .contact-hero-value,
  .contact-hero-value a {
    font-size: 15px;
  }

  .contact-hero-form {
    width: 100%;
    max-width: 85%;
    padding: 34px 28px;
    box-shadow: 0 4px 24px #1b1c2133;
  }

  .contact-hero-form h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .contact-hero-form-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .contact-hero-form input,
  .contact-hero-form textarea {
    font-size: 15px;
    padding: 12px 0 8px 0;
    margin-bottom: 20px;
  }

  .contact-hero-form textarea {
    min-height: 80px;
  }

  .contact-hero-form button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
	.energy-section {
  padding: 50px 0;

}
}


.map-section {
  width: 100%;
  height: 610px;
  background: #f6f6f6;
  position: relative;
  overflow: hidden;
}

.map-embed {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.1) brightness(0.97);
  border-radius: 0;
  min-height: 430px;
  display: block;
}

.map-info-card {
  position: absolute;
  left: 100px;
  bottom: 126px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 22px #23232317;
padding: 24px;
  min-width: 310px;
  max-width: 538px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.map-info-title {
  color: var(--Black, #222);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
letter-spacing: 0.32px;
  margin-bottom: 6px;
}

.map-info-address {
 color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.32px;
  margin-bottom: 16px;
}

.map-info-row {
  display: flex;
  align-items: center;
color: var(--Black, #222);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.32px;
  margin-bottom: 9px;
}
.map-info-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  opacity: 0.77;
}
.map-info-row a {
  color: #222;
  text-decoration: none;
  margin-left: 2px;
}
.map-info-row:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .map-section { height: 450px; padding: 0px !important; }
  .map-info-card {
    left: 8px;
	  bottom: revert-layer;
    top: 4px;
    padding: 14px 10px 12px 12px;
    min-width: 0;
    max-width: 80vw;
    font-size: 0.96rem;
  }
  .map-embed iframe { min-height: 350px; }
}


/* =======================================
   🔹 Service Page 🔹
   ======================================= */
:root { --primary-yellow: #FFF800; }


.project-image-feature-section {
  background: #f9f9f9;
  padding: 0;
}

.project-image-feature-wrapper {
  position: relative;
  width: 100%;
  max-width: 100vw;
  aspect-ratio: 16/9;
  background: #eee;
  overflow: hidden;
}

.project-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-image-feature-card {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 0 0 0;
    background: #F8F8F8;
    border-radius: 0px 12px 0px 0px;
    box-shadow: 0 6px 32px #0001;
    display: inline-flex;
    padding: 18px 2px 48px 140px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 500px;
    z-index: 2;
}

.project-image-feature-card h2 {
  color: var(--Black, #222);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 0px;
}

.project-image-feature-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}
.project-image-feature-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
}
.project-image-feature-card ul li::before {
  content: '✔';
  color: #a1a1a1;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0;
}
.project-feature-btn {
  display: inline-block;
  background: var(--primary-yellow);
  color: #222;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 0.88em 2em;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 8px #2222;
  border: 1.5px solid #ececec;
  margin-top: 6px;
}
.project-feature-btn:hover {
  background: #fffbe6;
  color: #222;
}

@media (max-width: 950px) {
  .project-image-feature-card {
    padding: 24px 12px 18px 14px;
    max-width: 97vw;
    border-radius: 0 0 14px 14px;
  }
  .project-main-image {
    aspect-ratio: 1.1/1;
  }
}
@media (max-width: 768px) {
  .project-image-feature-wrapper {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }

  .project-image-feature-card {
    position: static;
    width: 100%;
    padding: 24px 20px;
    border-radius: 0;
    box-shadow: none;
    background: #f8f8f8;
  }

  .project-image-feature-card h2 {
    font-size: 24px;
  }

  .project-image-feature-card ul li {
    font-size: 14px;
    line-height: 22px;
  }

  .project-feature-btn {
    width: 100%;
    text-align: center;
  }
}

:root {
  --primary-yellow: #FFF800;
}

.lc-feature-section {
  background: #fff;
  padding: 120px 0 120px 0;
}
.lc-feature-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
  padding: 0 40px;
}
.lc-feature-left {
  flex: 1 1 310px;
  max-width: 330px;
}
.lc-feature-left h2 {
color: var(--Black, #222);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 26px;
}
.lc-feature-left p {
  color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 171.429% */
  margin-bottom: 32px;
}
.lc-feature-btn {
  display: inline-block;
  background: var(--primary-yellow);
  color: #232323;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 0.95em 2em;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 8px #2222;
  border: 1.5px solid #ececec;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}
.lc-feature-btn:hover {
  background: #fffbe6;
  color: #222;
}

.lc-feature-image {
  flex: 1 1 360px;
  max-width: 480px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.lc-feature-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 4px 28px #0001;
  display: block;
}

.lc-feature-stats {
  flex: 1 1 170px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 22px;
  min-width: 170px;
}
.lc-feature-stat-number {
color: var(--Black, #222);
font-family: "General Sans";
font-size: 56px;
font-style: normal;
font-weight: 300;
line-height: normal;
  margin-bottom: 7px;
}
.lc-feature-stat-label {
 color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 171.429% */
}

@media (max-width: 950px) {
  .lc-feature-container {
    flex-direction: column;
    gap: 36px;
    padding: 0 10px;
    align-items: stretch;
  }
  .lc-feature-left,
  .lc-feature-image,
  .lc-feature-stats {
    max-width: 100%;
  }
  .lc-feature-image img {
    max-width: 100%;
  }
  .lc-feature-stats {
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
  }
	.faq-section{
		  padding: 50px 0 !important;

	}
	.services-intro{
		flex: 1 1 0px
	}
}

@media (max-width: 600px) {
  .lc-feature-section {
    padding: 36px 0 36px 0;
  }
  .lc-feature-left h2 { font-size: 1.2rem; }
}

.faq-section {
  background: #222;
  padding: 120px 0 120px 0;
}

.faq-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 34px;
}

.faq-left {
  flex: 1 1 480px;
  color: #fff;
}
.faq-left h2 {
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin-bottom: 32px;
  color: #fff;
}

.faq-list {
  width: 100%;
  margin-top: 10px;
}

.faq-item {
  border-bottom: 1.5px solid #323232;
  padding: 24px 0 10px 0;
}
.faq-question {
color: var(--White, #FFF);
font-family: "General Sans";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.faq-answer {
  color: var(--Light-grey, #B8B8B8);
font-family: "General Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 162.5% */
  margin-top: 10px;
  display: none;
  max-width: 92%;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-toggle {
  font-size: 1.65rem;
  color: #fff;
  min-width: 30px;
  text-align: right;
  line-height: 1;
  margin-left: 12px;
  transition: color 0.16s;
}
.faq-item.open .faq-toggle { color: #FFF800; }

.faq-image {
  flex: 1 1 420px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.faq-image img {
width: 560px;
height: 480px;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0005;
  display: block;
}

@media (max-width: 900px) {
  .faq-container { flex-direction: column; gap: 30px; padding: 0 10px; }
  .faq-image img { max-width: 100%; height:400px; }
  .faq-left h2 { font-size: 1.4rem; }
}

.energy-flex-section {
  background: #fff;
  padding: 120px 0 120px 0;
}
.energy-flex-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 58px;
  padding: 0 38px;
}

.energy-flex-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.energy-flex-row-top {
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 62px;
}
.energy-flex-title {
  flex: 1 1 430px;
  max-width: 600px;
}
.energy-flex-title h2 {
  color: var(--Black, #222);
font-family: "General Sans";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
  margin: 0;
}
.energy-flex-description {
  flex: 1 1 450px;
  max-width: 560px;
color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 171.429% */
  margin-top: 10px;
}

.energy-flex-row-bottom {
  align-items: flex-start;
  gap: 62px;
}
.energy-flex-features {
  flex: 1 1 590px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.energy-feature-item {
  display: grid;
  align-items: flex-start;
  gap: 12px;
 color: var(--Grey, #595959);
font-family: "General Sans";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px; /* 157.143% */
}
.energy-feature-icon {
  min-width: 32px;
  min-height: 32px;
  margin-top: 2px;
  opacity: 0.9;
}
.energy-flex-image {
  flex: 1 1 320px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.energy-flex-image img {
width: 560px;
height: 540px;
flex-shrink: 0;
  border-radius: 18px;
  box-shadow: 0 4px 20px #0001;
  display: block;
}

@media (max-width: 1100px) {
  .energy-flex-container { padding: 0 12px; }
  .energy-flex-row, .energy-flex-row-bottom { flex-direction: column; gap: 26px; }
  .energy-flex-title, .energy-flex-description, .energy-flex-features { max-width: 100%;     flex: 1 1 0px; }
  .energy-flex-image img { width: 400px; }
}
@media (max-width: 700px) {
  .energy-flex-section { padding: 50px 0; }
  .energy-flex-title h2 { font-size: 1.15rem; }
}

/*Impressum*/

.legal-content-wrapper {
  padding: 120px;
  font-size: 1rem;
  line-height: 1.8;
	font-family: "General Sans";

}

.legal-text h2 {
  margin-top: 2em;
  font-size: 1.5rem;
	font-family: "General Sans";

  color: #333;
}

.legal-text p {
  margin-bottom: 1em;
	font-family: "General Sans";

}

/*Cookies*/
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f7f7f7;
  padding: 20px;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
  font-size: 14px;
  z-index: 9999;
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cookie-consent-container p {
  margin-bottom: 15px;
}

.cookie-options {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-end;
}

.cookie-buttons button {
  padding: 8px 15px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

#accept-cookies {
  background-color: #119B9E;
  color: #fff;
}

#reject-cookies {
  background-color: #aaa;
  color: #fff;
}

#toggle-cookie-details {
  margin-top: 10px;
  cursor: pointer;
  color: #555;
  text-decoration: none;
}

.cookie-details {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}

.cookie-category {
  background-color: #eaeaea;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

.cookie-category table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.cookie-category th,
.cookie-category td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

.cookie-category th {
  background-color: #f3f3f3;
  font-weight: bold;
}

.cookie-options input[type="checkbox"] {
    width: 25px;
    height: 25px;
    accent-color: #119B9E; /* matches the Allow button color */
    cursor: pointer;
}

/* =======================================
   🔹  Responsive Styles 🔹
   ======================================= */

@media (max-width: 768px) {
    /* Header */
    .custom-header {
        top: 0px;
        padding: 12px 20px;
        width: 92% !important;
        border-radius: 0;
		margin-top: 0 !important;
    }
    .primary-menu, .header-right {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .mobile-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }
    .mobile-menu.open {
        display: flex;
    }
    .mobile-menu-items {
        list-style: none;
        text-align: center;
    }
    .mobile-menu-items li {
        padding: 10px 0;
    }
    .mobile-menu-items li a:hover {
        color: red;
    }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: left;
        text-align: left;
        gap: 20px;
		margin-bottom: 20px;
    }
    .footer-column {
        width: 100%;
		text-align: left;
    }
    .footer-menu .footer-items {
        display: flex;
        flex-direction: column;
        align-items: left;
    }
	 .contact-info, .contact-form {
        width: 100%;
		 text-align: left;
    }
	.contact-form{
		width: 95% !important;
	}
	
	.btn {
		padding:10px 5px;
	}
	.footer-content{
		padding: 0 0;
	}
	.first-footer{
		text-align: left;
	}
	.image-content img {
height: 340px;
		width: 402px;
		object-fit: cover;
	 border-radius: 12px !important;
margin-top:120px;
		
}
	
	.container-services {
		display: grid;
		}
	.about-description p{
		font-size: 14px !important;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
	}
	
	.btn {
		padding: 10px 5px;
        width: 140px;
		margin-top: 20px !important;
	}
	
	/* Subtitle */
.service-title{
font-size: 20px;
line-height: 28px;
	text-align: left;
}
	.service-description1{
			text-align: left;

	}
	.service-box .learn-more {
		right: 45%;
	}
	.hero-text h1{
		font-size: 32px !important;
font-style: normal;
font-weight: 500;
line-height: normal;
	}
	.suppliers-section{
		padding: 72px 0;
	}
	.map-section{
		padding: 72px 0;
	}
	.service-description-section{
		padding: 72px 0 !important;
	}
	.service-description{
		font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.28px;
text-align: left;
	}
	
	.service-subtitle{
		text-align: left;
	}
	
	.cooperation-section{
				padding: 72px 0 !important;
	}
	
	.cooperation-title{
		font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.3px;
		text-align: left;
	}
	
	.cooperation-subtitle{
		text-align: left;
		display: flex;
	}
	
	.cooperation-text {
		width: 90%;
	}
	
	.feature-title{
		font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 140% */
letter-spacing: 0.3px;
	}
	.footer-bottom{
		padding: 0 0 !important;
		        align-items: revert;
		display: grid;
	}
	
	.page-id-1068 p {
		text-align: left;
			font-size: 14px !important;
	}
	ul.wp-block-list{
		text-align: left;
	}
	
		.page-id-1066 p {
		text-align: left;
			font-size: 14px !important;
	}
		.page-id-1066 strong {
font-size: 24px;
 }
			.page-id-1068 strong {
font-size: 24px;
 }
	.stats-section{
		padding: 72px 0;
	}
	.about-hero {
		margin-bottom: 72px; 
		height: 480px;
	}
	.checkbox-group label {
		display: block;
	}
	.checkbox-group input[type="checkbox"]{
		width: 20px;
		height: 14px;
	}
	.service-box::after{
		top: 5px;
	}
	.hero-section{
		height: 480px;
    margin-top: 72px;
	}
	.map-subtitle{
		text-align: left;
	}
	.map-title{
		text-align: left;
		font-size: 32px;
font-style: normal;
font-weight: 500 !important;
line-height: normal;
letter-spacing: 0.3px;
	}
	h2.first-footer{
		font-size: 32px !important;
font-style: normal;
font-weight: 500;
line-height: normal;
	}
	
	.footer-column h4 {
text-align: left;
}

ul#menu-footer-menu1{
margin-left: 0px;
	}
	
	.footer-links{
		display: flex;
		justify-content: left;
		text-align: left;

	}
		.
	body{
		padding: 0 24px !important;
	}
	/* Contact Section */
.contact-section {
    padding: 64px 20px;
}
	.footer-column2{
		margin-right: 280px;
				text-align: left;

	}
	.footer-column1{
		margin-right: 280px;
		text-align: left;
	}
	.contact-hero-section {

	padding: 20px;
 
}
	.legal-content-wrapper{
		padding: 50px 10px;
	}
	.c-hero-storage{
		margin: 0 20px 40px 20px;
	}
}
  