    :root {
        --text: #545454;
        --text20: #545454;   
        --text5: hsl(0, 0%, 33%, 5%);             
        --background: #ffffff;
        --primary: #28B48E;
        --primary20: hsl(164, 64%, 43%, 20%);
        --secondary: #28B48E;
        --secondary10: rgba(40, 180, 142, 0.1);
        --secondary20: hsl(164, 64%, 43%, 20%);
        --accent: #545454;
        --whitetext: #ffffff;        
    }

    body {
        font-family: "Quicksand", sans-serif;
        background-color: var(--background);
        color: var(--text);
        margin: 0;
        padding: 0;
        padding-top: 70px;
    }

    .container-fixed-width {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .main-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .text-content {
        z-index: 1;
    }

    .text-content h1 {
        font-size: 4rem;
        line-height: 1.2;
    }

    .text-content .highlight {
        display: block;
        color: var(--whitetext);
        font-weight: bold;
        text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    }
 
    .text-content .highlight-magic {
        display: block;
        color: #d4f0e8;
        font-weight: bold;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        font-weight: bold;
    }    

    .text-content .highlight-secondary {
        color: var(--text);
        white-space: nowrap;
    }

    .text-content p {
        color: var(--whitetext);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }    

    .btn-section {
        margin-top: 20px;
    }

    .btn-primary-custom {
        background-color: var(--secondary);
        border-color: var(--secondary);
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        margin-right: 10px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .btn-secondary-custom {
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
        padding: 10px 20px;
        text-transform: uppercase;
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Pridané pre plynulý efekt */
    }

    .btn-secondary-custom:hover {
        transform: translateY(-5px);
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
        box-shadow: 0 20px 80px -10px var(--primary);

    } 

    .btn-secondary-custom:active {
        background-color: var(--primary) !important;
        border-color: var(--primary) !important;
        color: white !important;
    } 
    

    .btn-primary-custom-form {
        background-color: var(--secondary);
        border-color: var(--secondary);
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        margin-right: 10px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .btn-secondary-custom-form {
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
        padding: 10px 20px;
        text-transform: uppercase;
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Pridané pre plynulý efekt */
    }

    .btn-secondary-custom-form:hover {
        transform: translateY(-5px); /* Posunutie tlačidla mierne hore */
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    } 

    .btn-secondary-custom-form:active {
        background-color: var(--primary) !important;
        border-color: var(--primary) !important;
        color: white !important;
    } 


    .btn-secondary-custom-price {
        background-color: var(--accent); /* Zmena farby pozadia na --accent */
        border-color: var(--accent); /* Zmena farby okraja na --accent */
        color: var(--background);
        padding: 10px 20px;
        text-transform: uppercase;
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease; /* Pridané pre plynulý efekt */
    }

    .btn-secondary-custom-price:hover {
        transform: translateY(-5px); /* Posunutie tlačidla mierne hore */
        background-color: var(--accent); /* Zmena farby pozadia na --accent */
        border-color: var(--accent); /* Zmena farby okraja na --accent */
        color: var(--background);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Tieň pre hover efekt */
    }

    .btn-secondary-custom-price:active {
        background-color: var(--accent) !important; /* Zmena farby pozadia na --accent */
        border-color: var(--accent) !important; /* Zmena farby okraja na --accent */
        color: var(--background) !important;
    }

    .btn-section .btn-secondary-custom:active {
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;
    }

    .grid-content img {
        max-width: 88%;
        height: auto;
        padding-left: 100px;
        margin-left: 60px;
    }

    .section-header {
        position: relative; /* Potrebné pre absolútne umiestnenie ikon */
        text-align: center; /* Zarovnanie nadpisu na stred */
    }

    .section-header .section-title {
        padding-bottom: 30px;
        font-size: 2.5rem;
        font-weight: 600;
        color: var(--text);
        z-index: 2;
        font-weight: bold;
    }

    .services-section {
        max-width: 1200px;
        margin: 50px auto;
        padding: 0 15px;
    }

    .tab {
        cursor: pointer;
        margin-bottom: 10px;
        transition: background-color 0.3s ease;
    }

    .tab.open .tab-header {
        transform: scale(1.01);
    }  

    .tab-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--secondary20);
        border-radius: 10px;
        padding: 15px 20px;
        color: var(--text20);
        font-weight: bold;
        font-size: 1.3rem;
        transition: transform 0.2s ease;

    }     

    .tab-header:hover {
        transform: scale(1.01);
    }

    .tab-content {
        background-color: var(--background);
        color: var(--text);
        padding: 0 20px;
        border-radius: 10px;
        display: none;
        overflow: hidden;
    }

    .tab.open .tab-content {
        display: block;
        padding: 20px;
    }

    .tab .icon {
        transition: transform 0.3s ease;
    }

    .tab.open .icon {
        transform: rotate(45deg); /* Otočíme ikonku pre aktívny stav */
    }

    .team-section {
        padding-bottom: 20px;
        background-color: var(--background);
    }

    .team-grid {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 30px;
    }

    .team-card {
        background-color: var(--secondary);
        border-radius: 10px;
        padding: 20px;
        width: 270px;
        text-align: center;
        color: var(--text);
        transition: transform 0.3s ease;
        box-shadow: 0 0 15px #00000056;
    }

    .team-card:hover {
        transform: scale(1.05);
    }

    .team-image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 2px solid #D9EBF2;
        margin-bottom: 15px;
    }

    .team-info h3 {
        font-size: 1.5rem;
        margin: 0;
        color: var(--text);
    }

    .team-info p {
        font-size: 1rem;
        color: var(--text);
        opacity: 0.8;
    }        

    .section-contact {
        padding-bottom: 50px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-row {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        background-color: var(--secondary10);
        border: 1px solid var(--secondary10);
        border-radius: 5px;
        color: #545454;
        font-weight: 600;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #545454;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: var(--secondary10);
    }

    .contact-form textarea {
        resize: none;
    }
   

    .error-message {
        color: red;
        font-size: 0.9rem;
        margin-right: 10px;
    }

    .text-end {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }

    .btn-primary-custom {
        padding: 10px 20px;
        border-radius: 5px;
        background-color: var(--primary);
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        cursor: pointer;
        border: none;
    }

    .btn-primary-custom:hover {
        background-color: var(--accent);
    }
   
    .contact-form input:-webkit-autofill,
    .contact-form input:-webkit-autofill:hover,
    .contact-form input:-webkit-autofill:focus,
    .contact-form textarea:-webkit-autofill,
    .contact-form textarea:-webkit-autofill:hover,
    .contact-form textarea:-webkit-autofill:focus {
        /* pozadie autofill */
        box-shadow: 0 0 0 1000px var(--secondary10) inset !important;
        border: 1px solid var(--secondary10) !important;
        border-radius: 5px !important;
    
        /* text */
        -webkit-text-fill-color: #545454 !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
    
        /* hack na zrušenie default žltého pozadia */
        transition: background-color 5000s ease-in-out 0s;
    }
    
    .error-message {
        color: var(--accent);
        margin-right: 10px;
        padding-top: 3px;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .contact-map {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Zarovná všetko na stred vertikálne */
        background-color: var(--background);
        padding-top: 20px;;
    }

    .contact-map .map-image img {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);        
    }

    .contact-map .contact-info {
        color: var(--text);
        font-size: 1.1rem;
        line-height: 1.5;
        padding-left: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center; /* Vertikálne zarovná kontaktne údaje */
    }

    .contact-map .contact-info i {
        margin-right: 10px;
        color: var(--accent);
    }

    .contact-map .divider {
        width: 2px; /* Viditeľnejšia šírka */
        background-color: rgba(84, 84, 84, 0.2);
        height: 300px; /* Nastavená pevná výška */
        opacity: 0.5;
        margin: 0 30px; /* Umožní zarovnanie vertikálne na stred */
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--text);
        text-align: center;
        font-weight: bold;
    }      

    .bigfont {
            font-size: 31px;
            font-weight: 600;
    }        
    
    footer {
        background-color: #545454;
        color: var(--text20);
        padding: 40px 20px;
        font-size: 14px;
        gap: 2em;
        border-radius: 10px; 
        max-width: 1200px; 
        margin: 0 auto; 
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .footer-logo{
        width: 180px;
        padding-top: 6px;
    }        

    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1;
        padding: 10px;
        min-width: 200px;
        color: var(--whitetext);
    }

    .footer-section.logo-section {
        display: flex;
        justify-content: center;  
        align-items: center;     
        text-align: center;  
    }        

    .footer-section h4 {
        font-size: 18px;
        font-weight: 600;
    }

    .footer-section h5 {
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
        color: var(--whitetext);
    }

    .footer-section ul li {
        margin-bottom: 10px;
        color: var(--whitetext)
    }

    .footer-section ul li a {
        color: var(--text20);
        text-decoration: none;
        position: relative;
        padding-bottom: 2px;
        color: var(--whitetext)
    }
    
    .footer-section ul li a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 1px;
        background-color: var(--whitetext);
        transition: width 0.3s ease-in-out;
    }
    
    .footer-section ul li a:hover::after {
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgb(237 237 237 / 17%);
        margin-top: 40px;
    }

    .footer-bottom p {
        margin: 5px 0;
        color: var(--whitetext);
    }

    .footer-bottom span {
        color: var(--whitetext);
    }

    .footer-bottom a {
        color: var(--primary);
        text-decoration: none;
    }

    .footer-link {
        color: var(--primary);
        text-decoration: none;
        position: relative;
        padding-bottom: 2px;
    }
    
    .footer-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 1px;
        background-color: var(--primary);
        transition: width 0.3s ease-in-out;
    }
    
    .footer-link:hover::after {
        width: 100%;
    }
    

    /* Header */
    header {
        background-color: #e9f7f3;
        padding: 15px 0;
        display: flex;
        justify-content: center;
        box-shadow: 0 2px 14px rgba(15, 12, 49, .06);
        border-bottom: 1px solid #d4f0e8;
        position: fixed; /* Pridáme pevné umiestnenie */
        top: 0; /* Zabezpečíme, že bude vždy na vrchu */
        width: 100%; /* Nech pokrýva celú šírku */
        z-index: 1000; /* Nastavíme vyššiu hodnotu z-indexu, aby bola nad ostatnými elementmi */
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px; /* Maximálna šírka */
        width: 100%; /* Plná šírka pre responzívnosť */
        padding: 0 15px; /* Vnútorné odsadenie */
    }

    .navbar-logo {
        width: 180px;
        height: auto;
    }

    .navbar-menu {
        list-style: none;
        display: flex;
        gap: 30px;
        margin-top: 15px; /* Nastavte si požadovanú hodnotu */
        padding: 0; /* Zabezpečte, aby nedochádzalo k zbytočnému vnútornému odsadeniu */
    }

    .navbar-menu li {
        display: inline;
    }
    
    .navbar-menu li a {
        color: #5b5c5b;
        text-decoration: none;
        font-size: 1rem;
        position: relative;
        padding-bottom: 2px;
    }
    
    .navbar-menu li a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 1px;
        background-color: #5b5c5b;
        transition: width 0.3s ease-in-out;
    }
    
    .navbar-menu li a:hover::after {
        width: 100%;
    }
    

    /* Hamburger */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: var(--text);
    }        

    .team-content {
        display: flex;
        align-items: center; /* Vertikálne centrovanie */
        justify-content: center; /* Horizontálne centrovanie celej sekcie */
        gap: 100px; /* Medzera medzi obrázkom a kartou */
    }

    .team-image-left img {
        max-width: 256px; /* Nastavte požadovanú šírku */
        height: auto;
    }

    .team-grid {
        display: flex;
        justify-content: center; /* Centrovanie karty */
    }

    .map-image img {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out; /* plynulý prechod */
    }
    
    .map-image:hover img {
        transform: scale(1.03); /* mierne zväčšenie */
    }
    
    [id] {
        scroll-margin-top: 110px;
      }

    /* RESPONSIVE */
    /* MOBILE */    
    @media (max-width: 768px) {
        body {
            padding-top: 75px;
        }   

        .header-info {
            display: none; 
        }
        .header-divider {
            display: none; 
        }          

        .section-contact .text-end {
            display: flex;
            flex-direction: column;
            align-items: center;    
            gap: 8px;
        }
        
        .section-contact .error-message {
            min-height: 30px; 
            text-align: center; 
        }
        
        .section-contact .text-end button {
            order: 0;
        }
        
        .section-contact .text-end .error-message {
            order: 1;
            margin: 0; 
        }          

        .main-section {
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            top: 14px;
            height: auto;
            position: relative;
            border-radius: 15px;
            padding: 20px;
        }

        .text-content {
            max-width: 100%;
            z-index: 1;
            position: relative;
        }

        .text-content h1 {
            font-size: 2.8rem;
            line-height: 1.3;
        }

        .text-content p {
            font-size: 1.1rem;
        }

        .grid-content {
            display: none;
        }

        .btn-primary-custom, .btn-secondary-custom {
            width: 100%;
            margin: 10px 0;
        }

        .contact-form-row {
            flex-direction: column; 
        }

        .mobile-image {
            position: fixed;
            bottom: 0;
            left: 52%;
            width: 50%;
            opacity: 0.05;
            z-index: 0;
            top: 81px;
            pointer-events: none; 
        }

        .tab-header {
            width: 100%; 
            box-sizing: border-box; 
        }
        
        .contact-map {
            flex-direction: column;
            align-items: center;
        }

        .contact-map .map-image {
            width: 100%;
            margin-bottom: 20px;
            z-index: 9;            
        }

        .contact-map .divider {
            display: none; 
        }

        .contact-map .contact-info {
            text-align: center; 
            padding-left: 0;
        }   
        
        .pmobile {
            font-size: 15px;
        }      
        
        .bigfont{
            font-size: 22px;
        }           

        .btn-secondary-custom-price {
            width: 100%; 
            text-align: center; 
            margin: 10px 0;
        }     
        
        .footer {
            margin-left: 20px;
            margin-right: 20px;
        }

        .footer-logo {
            padding-top: 0px;
        }            

        .footer-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-section {
            flex: 1 1 100%;
            margin: 10px 0;
        }

        .footer-section.logo-section {
            margin-bottom: 20px;
        }

        .footer-bottom {
            font-size: 12px;
        }     
        
        .navbar-menu {
            display: none;
            flex-direction: column;
            width: 100%;
            position: absolute;
            top: 60px;
            left: 0;
            background-color: #e9f7f3;
            padding: 10px 0;
            border-bottom: 1px solid #d4f0e8;
            z-index: 999;
        }

        .navbar-menu.active {
            display: flex;
            top: 48px;
        }

        .navbar-menu li {
            text-align: center;
            padding: 10px 0;
        }

        .hamburger {
            display: flex;
        }       
        
        .team-image-left {
            display: none;
        }            
    }

    @media (min-width: 769px) {
        .mobile-image {
            display: none;
        }
    }

    /* RESPONSIVE */
    /* IPAD/TABLET */  
    @media only screen 
    and (orientation: portrait) 
    and (width: 820px) 
    and (height: 1106px) 
    and (resolution: 2dppx) {
    
    .bigfont {
      font-size: 22px;
    }

    .navbar-menu {
    display: contents;
    }   
  }

@media only screen 
  and (min-width: 1024px) 
  and (max-height: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5)
  and (orientation: portrait) {
    .navbar-menu {
        display: contents;
    }    
    .contact-form-row {
        padding-bottom: 15px;
    }    

    .benefits-divider {
        margin-right: 15px;
        margin-left: 15px;
    }

  /* Po otvorení tabu sa .service-item stane stĺpcom */
  .tab.open .service-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    gap: 0 !important;
  }

  /* Obrázok 100% šírka a fixná výška 300px */
  .tab.open .service-item img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
  }

  /* Divider teraz horizontálne po celej šírke */
  .tab.open .service-item .service-divider-vertical {
    width: 100% !important;
    height: 2px;
    margin: 15px auto; 
    background-color: rgba(84,84,84,0.2);
  }

  /* Text zaberie celú šírku a dostane padding */
  .tab.open .service-item .service-text {
    width: 100% !important;
    padding: 20px 0 0;
  }

}


.hero-swiper-section {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

/* SLIDER */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: 100%;
}

.hero-swiper .swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary20) 40%, rgb(179 179 179 / 10%) 100%);
  box-shadow: 0 2px 14px rgba(15, 12, 49, .06);
  border-bottom: 1px solid #d4f0e8;
  pointer-events: none;
}

.hero-overlay .container-fixed-width {
    display: flex;
    align-items: center;
    height: 100%;
    width: 1200px;    
}

.hero-overlay .text-content,
.hero-overlay .btn-section a {
  pointer-events: auto;
}

header .navbar {
  display: flex;
  align-items: center;
}

.header-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(84,84,84,0.2);
  margin: 0 20px;
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text);
}

.header-item i {
  margin-right: 6px;
  color: var(--primary);
  font-size: 1rem;
}

.header-phone a {
  color: var(--text);
  text-decoration: none;
}

.header-phone a:hover {
  text-decoration: underline;
}

.tab-content .service-item {
  display: flex;
  align-items: stretch; 
  gap: 20px;
  padding: 20px 0;
}


.tab-content .service-item img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}


.tab-content .service-divider-vertical {
  width: 2px;
  background-color: rgba(84,84,84,0.2);
}

.tab-content .service-text {
  flex: 1;
  align-content: center;
}



@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
  }

  .logo {
    order: 0;
  }

  .hamburger {
    order: 1;
  }

 .hero-swiper-section {
    height: 90vh;
} 

  .header-info {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 0;
  }
  
  .header-divider {
    order: 2;
    align-self: stretch;
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

    .tab-content .service-item img {
        width: 100%;
    }  

  .service-divider-vertical {
    display: none;
  }

  .service-text {
    width: 100%;
    padding: 0 15px;
  }

  .service-text p,
  .service-text ol,
  .service-text ul,
  .service-text h4 {
    text-align: left;
  }
}

.benefits-section {
  padding-top: 60px;
  background-color: var(--background);
}

.benefits-swiper {
  position: relative;
}

.benefits-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px;
}

.benefits-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.benefits-divider {
  width: 2px;
  height: 80px;
  background-color: var(--secondary20);
  flex-shrink: 0;
  border-radius: 1px;
}

.benefits-text {
  flex: 1;
}

.benefits-text h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.benefits-text p {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.4;
}

.benefits-swiper:hover {
  cursor: grab;
}

@media (max-width: 768px) {
  .benefits-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .benefits-divider {
    width: 60px;
    height: 2px;
    margin: 0 auto;
  }
  .benefits-text {
    width: 100%;
    padding: 0 15px;
  }
  .benefits-text h3,
  .benefits-text p {
    text-align: center;
  }
}

/* Dropdown (select) */
.contact-form select#service {
  width: 100%;
  padding: 10px;
  background-color: var(--secondary10);
  border: 1px solid var(--secondary10);
  border-radius: 5px;
  color: #545454;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23545454' d='M2 5L0 0h4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 10px;
  margin-top: 0; 
}

.contact-form select#service:focus {
  outline: none;
  border-color: var(--secondary10);
  box-shadow: 0 0 0 2px var(--whitetext);
}

@media (max-width: 768px) {
  .contact-form select#service {
    font-size: 1rem;
  }
}


