/* header section */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');


html {
    scroll-behavior: smooth;
    font-family: 'Open Sans', sans-serif;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}


/* header section */
html, body, header, .logo, nav ul li a, .contact-button a, .fa-phone, .hero, 
.hero-main-title, .hero-title, .hero-services, .hero-btn, .stats-section,
.new-text-list, .new-call-us-button, .servBlocks details summary,
.text-center.mt-4, .custom-call-us-button, #services h2, .servBlocks h2.subheading,
.testimonial-wrapper .testimonial-card, .locksmith-info-section, 
.green-help-section h3, .button-group .btn-warning, .reviews-section h2,
.review-card .review-name, .review-card p, .faq summary, 
.estimate-section, .estimate-text, footer, .footer-contact p, 
.footer-areas ul li a, .footer-social .social-icons a, 
.privacy-notice-container, .terms-container, 
.cookies-body section, body.error-404-body, body.thank-you-body,
.cookie-popup, .cookie-consent-container {
    font-weight: calc(90% * 700); /* Wartość zmniejszona o 10% */
}

header {
    position: sticky; /* Stays fixed at the top of the screen */
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 0px 0px;
    border-bottom: 1px solid #dcdcdc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 44px;
    max-width: 100%;
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: 10px;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
    white-space: nowrap; /* Prevents the text from wrapping */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; /* Space between the items */
}

nav ul li a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: bold;
    font-size: 1rem; /* Increased default size */
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    transform: translateX(-20px); /* Przesunięcie całego przycisku w lewo o 20px */
}

.contact-button a {
    display: inline-block;
    padding: 12px 24px;
    padding-right: 20px;
    background-color: #ffc107;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: bold;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    white-space: nowrap; /* Prevent wrapping of text */
}

.fa-phone {
    font-size: 1.5rem; /* Powiększono ikonę o 10% */
}

.contact-button a:hover {
    background-color: #e0a800;
}

/* Responsive Design for Tablets */
@media (max-width: 1250px) and (min-width: 769px) {
    header {
        padding: 25px 25px; /* Większy padding na tablety */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 30px; /* Logo większe niż na telefonie */
    }

    .menu-icon {
        display: block;
        font-size: 30px; /* Większa ikona menu na tabletach */
    }

    .contact-button {
        text-align: right;
        transform: translateX(0); /* Reset transform */
    }

    .contact-button a {
        font-size: 1.1rem; /* Trochę większa czcionka przycisku na tablety */
        padding: 10px 20px; /* Większe marginesy wewnętrzne */
    }

    /* Ikona telefonu większa na tabletach */
    .contact-button a .fa-phone {
        font-size: 1.5rem; /* Większa ikona telefonu */
    }

    nav ul {
        gap: 25px; /* Trochę większy odstęp między linkami */
    }

    nav ul li a {
        font-size: 1.5rem; /* Większa czcionka linków na tabletach */
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    nav ul li {
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        font-size: 1.6rem; /* Trochę większe linki na tablecie */
    }
}

/* Responsive Design for Mobile - Phones Only */
@media (max-width: 768px) {
    header {
        padding: 10px 15px; /* Dodano większy padding z lewej strony loga */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 30px; /* Zmniejszono o 10% (38.4px -> 34.56px) */
        margin-left: 10px; /* Dodatkowy padding z lewej strony */
    }

    .menu-icon {
        display: block;
        font-size: 28px; /* Rozmiar bez zmian */
        margin-right: 15px; /* Dodano dodatkowy padding z prawej strony */
    }

    .contact-button {
        flex: 1;
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        transform: translateX(0); /* Reset transform on mobile */
    }

    .contact-button a {
        font-size: 0.7rem; 
        padding: 8px 15px; 
    }

    .contact-button a .fa-phone {
        font-size: 1.4rem; /* Zmniejszono o 10% (1.65rem -> 1.485rem) */
    }

    /* Ukrycie numeru telefonu (bez zmian) */
    .contact-button a .phone-number {
        display: none;
    }

    nav ul {
        gap: 10px; /* Further reduce the gap between items */
    }

    nav ul li a {
        font-size: 1.5rem; /* Larger font size for mobile */
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }

    nav ul li {
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        font-size: 1.5rem; /* Increased font size */
    }
}


/* Desktop Version (above 1024px) */
@media (min-width: 1251px) {
    .logo img {
        margin-left: 40px;
    }

    .contact-button {
        order: 3;
        font-size: 1.25rem;
        padding: 12px 24px;
        transform: translateX(-20px); /* Przesunięcie przycisku w lewo o 20px na większych ekranach */
    }

    .fa-phone {
        font-size: 1.65rem; /* Powiększono o 10% */
    }

    nav {
        order: 2;
        margin-left: auto;
        margin-right: 0; /* Dodano, aby w pełni przesunąć zawartość w lewo */
    }

    nav ul {
        gap: 45px;
    }

    nav ul li a {
        font-size: 1.4rem;
    }
}

/* Global link styling */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* Hero container */
.hero {
    background: url('pictures/hero/panoramic-view-chatham.webp') center/cover no-repeat;
    padding: 30px 0 80px;
    position: relative;
    color: white;
    text-align: center;
    min-height: 70vh;
    clip-path: polygon(0 0, 100% 0, 100% 97.5%, 90% 100%, 85% 95%, 55% 100%, 50% 95%, 20% 100%, 15% 95%, 0 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero > * {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main title */
.hero-main-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    color: #edb41c;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin: 0px 0;
    line-height: 1.1;
}

/* Subtitle */
.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin: 0px 0;
    line-height: 1.1;
}

/* Services description */
.hero-services {
    font-family: 'Barlow SemiCondensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 0px 40px 0px !important;
    text-align: center;
    padding: 0px 0px 30px 0px;
}

/* Button */
.hero-btn {
    background-color: #edb41c;
    border: none;
    color: black;
    padding: 12px 24px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 45px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.hero-btn:hover {
    background-color: #e0a800;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.8);
    transform: scale(1.05);
}

/* Responsive adjustments */

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 30px 0 80px;
        min-height: 70vh;
    }

    .hero-main-title {
        font-size: 4rem;
        line-height: 1.1;
    }

    .hero-title {
        font-size: 4rem;
        line-height: 1.1;
        margin-left: 20px;
        margin-right: 20px;
    }

    .hero-services {
        font-size: 1.8rem;
        margin: 40px 30px 60px 30px !important;
        line-height: 1.5em;
        text-align: center;
        padding: 0px 0px 10px 0px;
        width: 90%;
        white-space: normal;
        word-wrap: break-word;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        background: url('https://www.locksmithchatham.co.uk/pictures/panoramic-view-chatham-mobile.webp') center/cover no-repeat !important;
        padding: 20px 0 60px;
        min-height: 65vh;
    }

    .hero-main-title {
        font-size: 2.5rem;
        line-height: 1.3em;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3em;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }

    .hero-services {
        font-size: 1.1rem;
        margin: 20px 0px 40px 0px !important;
        line-height: 1.3em;
        text-align: center;
        padding: 0px 0px 10px 0px;
    }
}






/* under hero 1 */
.stats-section {
    background-color: #ffffff;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    overflow: hidden;
    transform: scale(0.9); /* Skaluje całość o 90% */
    padding: 50px 0;
    max-width: 1200px; /* Dodano maksymalną szerokość tylko dla wersji PC */
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin: 30px 35px;  /* Zwiększone marginesy boczne (30px) dla większego odstępu */
    padding: 15px 8px;
}

.heading-google-star,
.heading-years-customers {
    font-size: 2rem;
    font-weight: 1000;
    line-height: 1.1;
    margin: 5px 0;
}

.reviews-google,
.star-rating,
.years-serving,
.satisfied-customers {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 5px 0;
}

/* Tablets: max-width: 1024px, min-width: 769px */
@media (max-width: 1024px) and (min-width: 769px) {
    .stats-section {
        padding: 10px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }

    .stats-item {
        flex: 0 0 48%;
        max-width: 48%;
        margin: 20px 0;  /* Zwiększenie odstępu między elementami */
        text-align: center;
    }

    .stats-icon {
        max-width: 140px;
        margin-bottom: 8px;
    }

    .heading-google-star,
    .heading-years-customers {
        font-size: 2rem;
        line-height: 1.2;
        margin: 8px 0;
    }

    .reviews-google,
    .star-rating,
    .years-serving,
    .satisfied-customers {
        font-size: 1.5rem;
        margin: 8px 0;
    }
}

/* Phones: max-width: 768px */
@media (max-width: 768px) {
    .stats-section {
        padding: 8px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 0 auto;
    }

    .stats-item {
        flex: 0 0 48%;
        max-width: 48%;
        margin: 10px 0;
        text-align: center;
    }

    .stats-icon {
        max-width: 120px;
        margin-bottom: 6px;
    }

    .heading-google-star,
    .heading-years-customers {
        font-size: 1.4rem;
        margin: 8px 0;
    }

    .reviews-google,
    .star-rating,
    .years-serving,
    .satisfied-customers {
        font-size: 1.2rem;
        margin: 6px 0;
    }
}


/* under hero 2*/
/* Global styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Main container */
.new-image-text-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 30px 10px; 
    background-color: #ffffff;
    margin-bottom: 0px;
    transform: scale(0.9);
    transform-origin: top center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.new-image-text-container img {
    max-width: 33%; /* Na wersji PC */
    height: auto;
    border-radius: 6px;
    margin-right: 25px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Text content */
.new-text-content {
    max-width: 583px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.new-text-list {
    list-style-type: disc;
    padding-left: 16px;
    text-align: left;
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.new-text-list li {
    margin-bottom: 8px;
}

.new-styled-text {
    font-weight: bold;
    display: inline;
}

/* Call-to-action button */
.new-call-us-button {
    display: inline-block;
    margin-top: 0;
    padding: 20px 39px;
    background-color: #edb41c;
    color: #000;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: center;
}

.new-call-us-button:hover {
    background-color: #e0a800;
    color: #fff;
    box-shadow: 0 0 16px rgba(255, 193, 7, 0.8);
    transform: scale(1.05);
}


/* Responsive styles */

/* Phones */
@media (max-width: 768px) {
    .new-image-text-container {
        flex-direction: column;
        padding: 10px 5px 0px 5px;
        margin-bottom: 0px;
        transform: scale(1);
    }

    .new-image-text-container img {
        max-width: 75%;
        margin: 0 auto;
    }

    .new-text-content {
        max-width: 100%;
        text-align: left; 
    }

    .new-text-list {
        font-size: 1.2rem;
        text-align: left; 
        padding-left: 16px;
    }

    .new-text-list li {
        margin-bottom: 5px;
    }

    .new-call-us-button {
        font-size: 1.2rem;
        padding: 15px 30px;
        margin: 10px 0 40px 0;
    }
}

/* Tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .new-image-text-container {
        flex-direction: column;
        padding: 15px 10px 0px 20px;
        margin-bottom: 0px;
        transform: scale(1);
    }

    .new-image-text-container img {
        max-width: 60%;
        margin: 0 auto 25px;
        border-radius: 8px;
    }

    .new-text-content {
        max-width: 100%;
        text-align: center;
        margin-top: 0;
    }

    .new-text-list {
        font-size: 1.6rem;
        text-align: left;
        padding-left: 20px;
        margin-bottom: 20px;
        margin-top: 0px;
    }

    .new-text-list li {
        margin-bottom: 10px;
    }

    .new-call-us-button {
        font-size: 1.3rem;
        padding: 18px 36px;
        margin: 10px 0px 20px 0px;
    }
}



/* ---------------------------------------------------- 
   Base styles for services section 
   ---------------------------------------------------- */

/* General container styles */
.container.text-center {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

/* Service blocks */
.servBlocks {
    padding: 5px 0;
    text-align: left;
    flex: 1 1 auto;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    max-width: 22%;
}

/* Stylowanie dla h2.subheading w .servBlocks */
.servBlocks h2.subheading {
    text-align: left;
    margin: 20px 0;         /* Większy margines nad i pod nagłówkiem */
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
}

/* Obrazki w .servBlocks */
.servBlocks img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 3px solid black;
    margin-bottom: 5px;
    display: block;
}

/* Subheading (h3) styles (wcześniej h4) */
.servBlocks h3 {
    font-size: 1.2rem;
    margin: 5px 0;
    font-weight: 600;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    width: 100%;
}

.servBlocks h3::after {
    content: "";
    display: block;
    width: 90%;
    border-bottom: 1px solid #ccc;
    position: absolute;
    bottom: -2px;
    left: 0;
}

/* Summary styles */
.servBlocks details summary {
    list-style: none;
    position: relative;
    padding-left: 25px;  /* Wcięcie od lewej (pod dziubkiem) */
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-size: 1rem;
    margin: 5px 15px 5px 0; /* Dodano niewielki margines z prawej: 15px */
    display: flex;
    align-items: center;
}

/* Remove default browser arrow */
.servBlocks details summary::-webkit-details-marker,
.servBlocks details summary::marker {
    display: none;
}

/* Custom arrow for summary */
.servBlocks details summary::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;           /* Strzałka przy krawędzi */
    font-size: 0.9rem;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    transform: rotate(0deg);
}

/* Paragraph styles in details */
.servBlocks details p {
    margin: 5px 15px 5px 25px; /* 25px od lewej, 15px od prawej */
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    text-align: left;
}

/* Services row layout */
.services-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    max-width: 1600px;
    margin: 0 auto;
    margin-bottom: 30px; /* Wolne miejsce na dole sekcji */
}

/* Free quote button i jego otoczenie */
.text-center.mt-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;    /* Większy odstęp od góry */
    margin-bottom: 70px; /* Większy odstęp od dołu */
}

.custom-call-us-button {
    padding: 20px 40px;
    font-size: 1.4rem;
    border-radius: 52.92px;
    font-weight: bold;
    background-color: #edb41c;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-call-us-button:hover {
    background-color: #e0a800;
    color: #fff;
    box-shadow: 0 0 24px rgba(255, 193, 7, 0.8);
    transform: scale(1.05);
}

/* ----------------------------------------------------
   Responsive styles
   ---------------------------------------------------- */

/* Tablets and smaller desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    .services-row {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px;
    }

    .servBlocks {
        max-width: 45%;
    }

    .servBlocks h3 {
        font-size: 1.1rem;
    }

    .servBlocks details summary {
        font-size: 1rem;
        padding-left: 25px;
        margin: 5px 15px 5px 0; /* Margines z prawej 15px */
    }

    .servBlocks details p {
        margin: 5px 15px 5px 25px; /* Wcięcie 25px, margines z prawej 15px */
    }
}

/* Small tablets and larger phones (max-width: 768px) */
@media (max-width: 768px) {
    .services-row {
        flex-direction: column;
        gap: 5px;
        padding: 0 15px;
    }

    .servBlocks {
        max-width: 100%;
    }

    .servBlocks h3 {
        font-size: 1.1rem;
    }

    .servBlocks details summary {
        font-size: 1rem;
        padding-left: 25px;
        margin: 5px 15px 5px 0;
    }

    .servBlocks details p {
        margin: 5px 15px 5px 25px;
    }

    /* Zmiana rozmiaru przycisku na telefonach */
    .custom-call-us-button {
        padding: 15px 30px; /* Zmniejszenie paddingu dla wersji mobilnej */
        font-size: 1.2rem; /* Zmniejszenie rozmiaru czcionki */
    }
}




/* comment 1 */
/* Testimonial Card Styles */
.testimonial-wrapper {
    background-color: #227244; /* Zielone tło */
    padding: 30px 0;  /* Dodanie paddingu na górze i dole */
    margin-top: 30px; /* Dodanie 30px wolnego miejsca na górze dla wersji PC */
    /* Usunięcie zaokrąglenia rogów */
    border-radius: 0; 
}

.testimonial-wrapper .testimonial-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    /* Usunięcie zaokrąglenia rogów */
    border-radius: 0; 
    padding: 20px;
    margin: 20px auto 30px; /* Zwiększenie marginesu dolnego o 30px */
    max-width: 800px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(-30px); /* Desktop positioning */
}

.testimonial-wrapper .testimonial-card:hover {
    transform: translateY(-35px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.5);
}

/* Testimonial Card Image */
.testimonial-wrapper .testimonial-card img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    /* Usunięcie zaokrąglenia rogów */
    border-radius: 0; 
    object-fit: cover;
}

/* Testimonial Stars */
.testimonial-stars {
    font-size: 1.2rem;
    color: #f7b500; /* Yellow color for stars */
    margin-bottom: 10px;
}

.testimonial-stars .star {
    margin-right: 5px;
}

/* Testimonial Content */
.testimonial-wrapper .testimonial-content {
    flex-grow: 1;
    text-align: left;
}

.testimonial-wrapper .testimonial-card .testimonial-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.testimonial-wrapper .testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
}

/* Tablet Adjustments: 769px -> 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-wrapper .testimonial-card {
        margin-left: 20px;  /* Margines po lewej na tabletach */
        margin-right: 20px; /* Margines po prawej na tabletach */
        margin-bottom: 60px; /* Zwiększenie marginesu dolnego o 30px */
    }

    .testimonial-wrapper {
        margin-top: 30px; /* 20px wolnego miejsca na górze dla tabletów */
    }
}

/* Mobile Adjustments: max-width: 768px */
@media (max-width: 768px) {
    .testimonial-wrapper {
        padding: 10px; /* Dodano padding dla całej sekcji */
        margin-top: 30px; /* 20px wolnego miejsca na górze dla telefonów */
    }

    .testimonial-wrapper .testimonial-card {
        flex-direction: column; /* Zmiana układu na kolumnowy */
        align-items: flex-start; /* Wyrównanie do lewej */
        padding: 20px 12px; /* Zmniejszenie paddingu wewnętrznego */
        width: 95%; /* Szerokość karty na 95% */
        margin: 0 auto 60px; /* Automatyczne wyrównanie do środka i margines dolny 60px */
        transform: none; /* Wyłączenie transformacji */
    }

    .testimonial-wrapper .testimonial-card img {
        width: 50px; /* Zwiększenie szerokości obrazu */
        height: 50px; /* Zwiększenie wysokości obrazu */
        margin-left: 10px; /* Przestrzeń po lewej stronie obrazka */
        margin-top: -15px; /* Przesunięcie obrazu w górę */
        margin-bottom: 10px; /* Przestrzeń pod obrazkiem */
    }

    .testimonial-wrapper .testimonial-content {
        margin-left: 0; /* Usunięcie lewego marginesu */
    }

    .testimonial-wrapper .testimonial-card .testimonial-name {
        font-size: 1rem; /* Dopasowanie rozmiaru czcionki */
    }

    .testimonial-wrapper .testimonial-card p {
        font-size: 1rem; /* Dopasowanie rozmiaru czcionki dla paragrafu */
        margin-bottom: 30px; /* Zwiększenie marginesu dolnego */
    }
}

/* why lockfast */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Global styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Desktop Version */
.why-lockfast-pc {
    background-color: #227244;
    color: white;
    padding: 30px 20%;
}

.why-lockfast-pc h2 {
    font-size: 2.5rem;
    margin: 25px 0px 40px 0px;
    font-weight: bold;
    text-align: center;
}

.why-lockfast-pc .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px; /* Reduced by 80% */
    width: 100%;
}

.why-lockfast-pc .text-content {
    width: 60%;
    text-align: left;
}

.why-lockfast-pc .image-content {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-lockfast-pc img {
    max-width: 100%;
    border-radius: 4.5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    height: auto;
}

/* Title group */
/* Zwiększono margines nad i pod o ~10px (z 6px -> 16px) */
.why-lockfast-pc .title-group h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 16px 0;  /* Zamiast margin-bottom: 6px */
    display: flex;
    align-items: center;
}

.why-lockfast-pc .title-group .icon {
    font-size: 1.5rem;
    color: #ffc107;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Paragraph group */
.why-lockfast-pc .paragraph-group p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 50px 3px 0; /* Reduced by 80% */
    text-align: left;
    min-height: 15px; /* Uniform minimal height for desktop paragraphs */
}

/* Call-to-action button */
.why-lockfast-pc .call-us-now-button {
    display: block; 
    width: fit-content;         
    margin: 36px auto;         
    
    background-color: #edb41c;
    color: #343a40;
    padding: 18px 36px;        
    border-radius: 36px;
    font-weight: bold;
    text-align: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-lockfast-pc .call-us-now-button:hover {
    background-color: #d49d1b;
    color: #fff;
    box-shadow: 0 0 10px rgba(237, 180, 28, 0.8);
    transform: scale(1.05);
}

/* Mobile Version domyślnie ukryta na dużych ekranach */
.why-lockfast-mobile {
    display: none;
}

/* TABLETY (769px -> 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .why-lockfast-pc {
        display: none;
    }

    .why-lockfast-mobile {
        display: block;
        background-color: #227244;
        color: white;
        padding: 60px 0; /* Większy padding ogólny sekcji */
    }

    /* Nagłówek h2 */
    .why-lockfast-mobile h2 {
        font-size: 1.8rem;
        font-weight: bold;
        width: 70%;
        margin: 0 auto 24px; /* Zwiększony dolny margines */
        text-align: center;
    }

    /* Tekst oraz obrazek z większym odstępem */
    .why-lockfast-mobile .text-content,
    .why-lockfast-mobile .image-content {
        width: 70%;
        margin: 0 auto 30px auto; /* Zwiększony dolny margines */
        text-align: left;
    }

    /* Zdjęcia */
    .why-lockfast-mobile img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        height: auto;
    }

    /* Tytuł grupy */
    .why-lockfast-mobile .title-group h3 {
        font-size: 1.6rem; /* Zwiększony rozmiar czcionki */
        margin: 12px 0 20px; /* Zwiększony dolny margines */
        text-align: left;
    }

    /* Ikony */
    .why-lockfast-mobile .title-group .icon {
        font-size: 1.6rem; /* Większa ikona */
        color: #ffc107;
        margin-right: 8px;
    }

    /* Akapit tekstu */
    .why-lockfast-mobile .paragraph-group p {
        font-size: 1.2rem; /* Zwiększony rozmiar czcionki */
        line-height: 1.6; /* Większa wysokość linii */
        margin: 0 0 16px 0; /* Zwiększony dolny margines */
        text-align: left;
        min-height: 10px;
    }

    /* Przycisk Call us NOW */
    .why-lockfast-mobile .call-us-now-button {
        display: block;
        width: fit-content;
        margin: 40px auto 20px; /* Większy margines wokół przycisku */
        padding: 25px 50px; /* JESZCZE WIĘKSZY ROZMIAR */
        border-radius: 45px; /* Większe zaokrąglenie */
        font-size: 1.5rem; /* JESZCZE WIĘKSZA CZCIONKA */
        background-color: #edb41c;
        color: #343a40;
        text-align: center;
    }

    /* Efekt hover na przycisku */
    .why-lockfast-mobile .call-us-now-button:hover {
        background-color: #d49d1b;
        color: #fff;
        box-shadow: 0 0 10px rgba(237, 180, 28, 0.8);
        transform: scale(1.05);
    }
}


/* TELEFONY (max-width: 768px) */
@media (max-width: 768px) {
    .why-lockfast-pc {
        display: none;
    }

    .why-lockfast-mobile {
        display: block;
        background-color: #227244;
        color: white;
        padding: 50px 10px 50px 10px;
    }

    .why-lockfast-mobile h2 {
        font-size: 1.5rem;
        margin: 0 0 4px;
        text-align: center;
        padding: 1px 0;
    }

    .why-lockfast-mobile .text-content {
        width: 90%;
        text-align: left;
        margin: 0 auto 3px;
        padding: 0;
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .why-lockfast-mobile .image-content {
        width: 90%;
        margin: 30px auto 0;
        text-align: center;
    }

    .why-lockfast-mobile img {
        max-width: 100%;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        height: auto;
    }

    .why-lockfast-mobile .title-group h3 {
        font-size: 1.2rem;
        margin: 2px auto;
        text-align: left;
        padding: 15px 0px 10px 0px;
    }

    .why-lockfast-mobile .title-group .icon {
        font-size: 1.4rem;
        color: #ffc107;
        margin-right: 8px;
    }

    .why-lockfast-mobile .paragraph-group p {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        margin: 5px 0px 5px 0px;
        padding: 0;
        text-align: left;
        min-height: 10px;
    }

    /* Dodajemy +10px wolnego miejsca pod przyciskiem */
    .why-lockfast-mobile .call-us-now-button {
        font-size: 1rem;
        padding: 15px 30px;
        border-radius: 30px;
        /* Zmieniamy margin-bottom z 0px na 10px */
        margin: 30px auto 10px auto;
        display: block;
        width: fit-content;
        background-color: #edb41c;
        color: #343a40;
        text-align: center;
    }
}






/* google rating */
.taggbox {
    margin: 50px auto; /* 50px z góry i z dołu, auto po bokach */
    width: 70%;
    height: 100%;
}

@media (max-width: 1024px) {
    .taggbox {
        margin: 50px auto; /* 50px z góry i z dołu, auto po bokach */
        width: 80%;
        height: 80%;
    }
}

@media (max-width: 768px) {
    .taggbox {
        margin: 50px auto; /* 50px z góry i z dołu, auto po bokach */
        width: 90%;
        height: 100%;
    }
}



/* Karuzela */
body {
    font-family: 'Open Sans', sans-serif;
}

.carousel-heading {
    text-align: center;
    color: #000;
    font-size: 2.64rem;
    margin: 80px 0 16px;
    padding-bottom: 16px;
}

h2 {
    font-size: 2.5rem;
}

.carousel-container {
    position: relative;
    max-width: 40%; /* Reduced section width by 10% */
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 30px; /* Increased bottom margin for desktop */
}

.carousel-content-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    scroll-behavior: smooth;
}

.carousel-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.carousel-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    background: linear-gradient(135deg, #319337, #344744);
    color: #fff;
    border-radius: 12px;
    position: relative;
}

/* Wersja desktopowa: top: 32px dla ikony, margin-bottom: 12px */
.carousel-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px; /* Dolny margines 12px na desktopach */
    position: absolute;
    top: 32px; /* Ikona przesunięta o +12px względem oryginału */
    left: 50%;
    transform: translateX(-50%);
    filter: invert(1); /* White icon */
}

.carousel-slide h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
    margin-top: 80px; /* Reduced space between icon and title */
}

.carousel-slide p {
    font-size: 1.04rem;
    line-height: 1.4;
    margin: 8px 0;
    text-align: left;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px; /* Increase margin to move dots lower */
}

.carousel-dots ul {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.carousel-dots ul li {
    width: 12px;
    height: 12px;
    background-color: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots ul li.active {
    background-color: #319337;
}

/* Przyciski nawigacyjne */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.3s ease;
}

.carousel-nav button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-nav .prev {
    position: absolute;
    left: 10px;
}

.carousel-nav .next {
    position: absolute;
    right: 10px;
}

/* TABLETY (max-width: 1024px) */
@media (max-width: 1024px) {
    .carousel-heading {
        font-size: 1.8rem; /* Zwiększony rozmiar czcionki */
        margin: 60px 0 16px; /* Większy padding u góry */
    }

    h2 {
        font-size: 2.8rem; /* Zwiększenie czcionki w nagłówkach H2 */
        font-weight: bold; /* Pogrubienie czcionki */
    }

    .carousel-slide {
        padding: 16px;
    }

    /* Było: top: 15px -> 27px (+12),
       Teraz dodatkowo margin-bottom +10px => margin: 0 auto 20px; */
    .carousel-icon {
        width: 48px;
        height: 48px;
        top: 27px; /* Zwiększony odstęp nad ikoną */
        margin: 0 auto 20px; /* Zwiększony dolny margines do 20px */
    }

    .carousel-container {
        position: relative;
        max-width: 75%; /* Adjusted for smaller screens */
        margin: 0 auto;
        overflow: hidden;
        margin-bottom: 20px; /* Increased bottom margin for tablet */
    }

    .carousel-slide h3 {
        font-size: 1.3rem; /* Zwiększenie rozmiaru czcionki */
        margin-top: 80px; /* Reduced space between icon and title */
    }

    .carousel-slide p {
        font-size: 1.1rem; /* Zwiększenie rozmiaru czcionki */
    }
}

/* TELEFONY (max-width: 768px) */
@media (max-width: 768px) {
    .carousel-heading {
        font-size: 1.6rem;
        margin: 40px 0 16px;
    }

    .carousel-slide {
        padding: 16px;
    }

    /* Było: top: 15px -> 27px (+12),
       Teraz dodatkowo margin-bottom +10px => margin: 0 auto 20px; */
    .carousel-icon {
        width: 48px;
        height: 48px;
        top: 27px; /* Zwiększony odstęp nad ikoną */
        margin: 0 auto 15px; /* Zwiększony dolny margines do 20px */
    }

    .carousel-container {
        position: relative;
        max-width: 90%; /* Adjusted for smaller screens */
        margin: 0 auto;
        overflow: hidden;
        margin-bottom: 20px; /* Increased bottom margin for mobile */
    }

    .carousel-slide h3 {
        font-size: 1.2rem;
        margin-top: 80px;
        margin-bottom: 10px;
    }

    .carousel-slide p {
        font-size: 1rem;
    }
}




/* comment 2 */
/* Testimonial Card Styles */
.testimonial-wrapper {
    background-color: #227244; /* Zielone tło */
    padding: 30px 0;  /* Dodanie paddingu na górze i dole */
    /* Usunięcie zaokrąglenia rogów */
    border-radius: 0;
}

.testimonial-wrapper .testimonial-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    /* Usunięcie zaokrąglenia rogów */
    border-radius: 0;
    padding: 20px;
    margin: 20px auto 60px; /* Zwiększenie marginesu dolnego o 30px */
    max-width: 800px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px); /* Initial lowered position */
}

.testimonial-wrapper .testimonial-card:hover {
    transform: translateY(0); /* Lift effect on hover */
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.5);
}

/* Testimonial Card Image */
.testimonial-wrapper .testimonial-card img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    /* Usunięcie zaokrąglenia rogów */
    border-radius: 0;
    object-fit: cover; /* Ensure image fits */
}

/* Testimonial Stars */
.testimonial-stars {
    font-size: 1.2rem;
    color: #f7b500; /* Yellow color for stars */
    margin-bottom: 10px;
}

.testimonial-stars .star {
    margin-right: 5px;
}

/* Testimonial Content */
.testimonial-wrapper .testimonial-content {
    text-align: left;
    flex-grow: 1;
}

.testimonial-wrapper .testimonial-card .testimonial-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.testimonial-wrapper .testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
}

/* Tablet Adjustments: 769px -> 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-wrapper .testimonial-card {
        margin-left: 30px;  /* Left margin for tablets */
        margin-right: 30px; /* Right margin for tablets */
        max-width: calc(100% - 60px); /* Adjusted width for tablets */
    }
}

/* Mobile Adjustments: max-width: 768px */
@media (max-width: 768px) {
    .testimonial-wrapper {
        padding: 10px; /* Dodano padding dla całej sekcji */
    }

    .testimonial-wrapper .testimonial-card {
        flex-direction: column; /* Zmiana układu na kolumnowy */
        align-items: flex-start; /* Wyrównanie do lewej */
        padding: 20px 12px; /* Zmniejszenie paddingu wewnętrznego */
        width: 95%; /* Szerokość karty na 95% */
        margin: 0 auto 60px; /* Automatyczne wyrównanie do środka i margines dolny 60px */
        transform: none; /* Wyłączenie transformacji */
    }

    .testimonial-wrapper .testimonial-card img {
        width: 50px; /* Zwiększenie szerokości obrazu */
        height: 50px; /* Zwiększenie wysokości obrazu */
        margin-left: 10px; /* Przestrzeń po lewej stronie obrazka */
        margin-top: -15px; /* Przesunięcie obrazu w górę */
        margin-bottom: 10px; /* Przestrzeń pod obrazkiem */
    }

    .testimonial-wrapper .testimonial-content {
        margin-left: 0; /* Usunięcie lewego marginesu */
    }

    .testimonial-wrapper .testimonial-card .testimonial-name {
        font-size: 1rem; /* Dopasowanie rozmiaru czcionki */
    }

    .testimonial-wrapper .testimonial-card p {
        font-size: 1rem; /* Dopasowanie rozmiaru czcionki dla paragrafu */
        margin-bottom: 30px; /* Zwiększenie marginesu dolnego */
    }
}



/* locksmith near you */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

/* Locksmith Info Section */
.locksmith-info-section {
    background-color: #fffbeb;
    padding: 15px 4.5% 36px;
    text-align: center;
    margin-bottom: 0;
}

.locksmith-info-section h2 {
    font-size: 2.5rem;
    margin: 36px 0 9px;
    color: #333;
    font-weight: bold;
}

.locksmith-info-section p {
    font-size: 1rem;
    color: #333;
    margin: 0 auto 9px;
    line-height: 1.8;
    text-align: left;
    max-width: 72%;
}

/* Image Styles */
.locksmith-info-section .image-placeholder img {
    width: 60%;
    display: block;
    margin: 30px auto;
    height: auto;
    padding: 30px 0;
}

/* Green Help Section */
.green-help-section {
    background-color: #227244;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.green-help-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Button Group */
.button-group {
    display: flex;
    justify-content: center; /* Wyśrodkowanie przycisków */
    gap: 40px; /* Zwiększenie odstępu między przyciskami */
    margin: 34px 0 40px;
}

.button-group .btn-warning {
    background-color: #edb41c;
    border: none;
    color: #343a40;
    padding: 16px 0; /* Wyrównanie paddingów */
    border-radius: 34px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    font-size: 1.5rem; /* Większa czcionka */
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 300px; /* Równa szerokość przycisków na PC */
    box-sizing: border-box; /* Zapewnienie równej szerokości */
}

.button-group .btn-warning:hover {
    background-color: #d49d1b;
    color: white;
    box-shadow: 0 0 9px rgba(237, 180, 28, 0.8);
    transform: scale(1.05);
}

/* Tablet Styles (769px -> 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Re-styling the main content sections */
    .locksmith-info-section h2 {
        font-size: 2rem; /* Slightly smaller font size */
        margin: 20px auto;
        text-align: center;
    }

    .locksmith-info-section p {
        font-size: 1rem; /* Slightly smaller font size */
        width: 80%;
        margin: 0 auto 9px;
        text-align: left;
    }

    .locksmith-info-section .image-placeholder img {
        width: 70%; /* Adjust image size */
        margin: 15px auto;
    }

    .green-help-section h2 {
        font-size: 1.8rem;
        width: 80%;
        margin: 0 auto 40px;
        line-height: 1.4;
    }

    .button-group {
        gap: 30px; /* Zmniejszenie odstępu */
        margin: 30px 0 20px;
        flex-direction: row; /* Przyciski obok siebie */
        justify-content: center; /* Wyśrodkowanie przycisków */
    }

    .button-group .btn-warning {
        padding: 16px 0;
        font-size: 1.4rem;
        width: 250px; /* Ustawiłem szerokość przycisków na tabletach */
    }
}

/* Phone Styles (max-width: 768px) */
@media (max-width: 768px) {
    /* Re-styling the main content sections */
    .locksmith-info-section h2 {
        font-size: 1.6rem; /* Mniejsza czcionka */
        margin: 36px auto 9px; 
        text-align: center;
    }

    .locksmith-info-section p {
        font-size: 1rem; 
        max-width: 95%;
        width: auto;
        margin: 0 auto 9px;
        text-align: left;
    }

    .locksmith-info-section .image-placeholder img {
        width: 100%; /* Zwiększenie rozmiaru obrazu na telefonie */
        margin: 15px auto;
    }

    .green-help-section h2 {
        font-size: 1.44rem;
        margin-bottom: 30px;
        padding: 0 20px;
        line-height: 1.6;
    }

    .button-group {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0 30px; /* Zmniejszenie marginesu o 10px na telefonach */
        justify-content: center; /* Wyśrodkowanie przycisków na telefonach */
        align-items: center; /* Wyśrodkowanie przycisków */
    }

    .button-group .btn-warning {
        width: 100%;
        max-width: 250px;
        padding: 10.8px 27px;
        font-size: 1.08rem;
    }
}



/* reviews */
body {
    font-family: 'Open Sans', sans-serif;
}

/* Reviews Section */
.reviews-section {
    background-color: #227244; /* Zielone tło dla sekcji */
    padding: 20px;
    margin-bottom: 40px; /* Increased bottom margin for more space */
}

.reviews-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 16px 0 30px;
    color: #fff; /* Zmieniono kolor na biały */
    text-align: center; /* Upewnij się, że tekst jest wyśrodkowany */
    width: 100%; /* Aby szerokość h2 była pełna */
    display: inline-block; /* Umożliwia centrowanie */
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns layout */
    gap: 50px; /* Increased gap between the cards */
    max-width: 1200px; /* Increased max-width by 10% */
    margin: 0 auto; /* Centering the container */
    padding: 0 20px;
}

/* Review Card */
.review-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff; /* White background for card */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0; /* Usunięcie zaokrąglenia rogów */
    padding: 30px 20px;
    width: 100%; /* Ensuring card is responsive */
    max-width: 1000px; /* Increased by 25% */
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px; /* Increased bottom margin for more space */
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.review-content {
    text-align: left;
    width: 90%;
}

.review-stars {
    font-size: 1.2rem;
    color: #f7b500;
    margin-bottom: 10px;
}

.review-stars .star {
    margin-right: 5px;
}

.review-card .review-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Review Card Image */
.review-card img {
    width: 60px; /* Increased image size */
    height: 60px;
    margin-right: 20px; /* Spacing between text and image */
    border-radius: 0; /* Usunięcie zaokrąglenia rogów */
    object-fit: cover;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .reviews-section {
        padding: 16px;
    }
    .reviews-section h2 {
        font-size: 2.5rem;
        font-weight: bold;
        margin: 30px 0 40px;
        color: #fff;
        white-space: normal;
    }

    .reviews-container {
        grid-template-columns: 1fr; /* Single column on tablets */
        gap: 20px; /* Increased gap between cards */
        max-width: 100%;
        padding: 0 15px;
    }

    .review-card {
        padding: 25px 15px;
        width: 90%;
        margin: 0 auto;
        margin-bottom: 40px; /* Increased bottom margin */
    }

    .review-card .review-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .review-card p {
        font-size: 1rem;
    }

    .reviews-section h2 {
        font-size: 1.6rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .reviews-section {
        padding: 10px;
    }

    .reviews-container {
        gap: 15px;
        max-width: 100%;
        padding: 0 10px;
    }

    .review-card {
        padding: 20px 12px;
        width: 95%;
        margin: 0 auto;
        flex-direction: column; /* Stosujemy kolumnowy układ na telefonach */
        align-items: flex-start; /* Wyrównujemy elementy do lewej strony */
        margin-bottom: 20px; /* Zmniejszony margines dolny */
    }

    .review-card img {
        width: 50px;
        height: 50px;
        margin-left: 10px; /* Ustawienie przestrzeni pomiędzy obrazkiem a tekstem */
        margin-top: -15px; /* Przesunięcie obrazu wyżej */
        margin-bottom: 10px; /* Ustalenie przestrzeni poniżej obrazu */
    }

    .review-card .review-name {
        font-size: 1rem;
    }

    .review-card p {
        font-size: 1rem;
    }

    .review-stars {
        display: flex;
        align-items: center; /* Wyrównanie gwiazdek w jednej linii */
        margin-right: 10px; /* Margines pomiędzy gwiazdkami a obrazkiem */
    }
}



/* General styles for FAQ section */
.faq-section {
    margin-top: 20px;
    padding: 24px 3.6% 40px;
    background-color: #fffbeb;
    overflow-x: hidden;
    box-shadow: none;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 13.6px;
    text-align: center;
    color: #333;
}

/* FAQ question boxes */
.faq {
    background-color: transparent;
    padding: 9.6px;
    width: 54.4%;
    max-width: 54.4%;
    margin: 6.4px auto;
    border: none;
    text-align: left;
}

.faq details {
    margin-bottom: 4px;
    padding: 10.4px;
    background-color: #227244;
    border: 2px solid #d3c7b2;
    border-radius: 0;
    box-shadow: 0 4px 6.4px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.faq summary {
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    align-items: center;
    color: #fff;
    list-style: none;
    padding-left: 6.4px; /* Add padding to left for space between arrow and text */
}

/* Remove default browser arrow */
.faq summary::-webkit-details-marker {
    display: none;
}

/* Custom arrow for FAQ summary (to the left) */
.faq summary::before {
    content: '\f0d7'; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    transform: rotate(-90deg); /* Initially points left */
    transition: transform 0.3s ease;
    margin-right: 10px; /* Space between arrow and text */
    color: #fff;
}

details[open] summary::before {
    transform: rotate(0deg); /* Points down after opening */
}

.faq p {
    margin-top: 6.4px;
    font-size: 1rem;
    line-height: 1.2;
    color: #fff;
    text-align: left;
    border-top: 1px solid #fff; /* White color for separator */
    padding-top: 10px; /* Space above the content */
    width: 100%; /* Ensure it fills the container width */
    box-sizing: border-box;
}

.faq-section .additional-info {
    font-size: 1rem;
    text-align: center;
    margin: 13.6px auto 0;
    color: #333;
    background-color: #fffbeb;
    padding: 9.6px;
    border-radius: 6.4px;
    max-width: 100%;
    font-weight: bold;
}

/* ----------------------------------------------------
   Responsive styles
   ---------------------------------------------------- */

/* Tablet: max-width: 1024px */
@media (max-width: 1024px) {
    .faq-section {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding-bottom: 32px;
    }

    .faq {
        width: 80% !important;
        max-width: 80% !important;
        margin: 6.4px auto;
        padding: 9.6px;
    }

    .faq-section h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .faq summary {
        font-size: 1rem;
    }

    .faq p {
        font-size: 1rem;
    }

    .faq-section .additional-info {
        font-size: 1rem;
        padding: 8px;
        max-width: 80%;
    }
}

/* Mobile: max-width: 768px */
@media (max-width: 768px) {
    .faq-section {
        width: 100%;
        max-width: 100%; 
        margin: 0 auto;
        padding-bottom: 32px;
    }

    .faq li {
        color: #fff;
        font-size: 1rem;
        line-height: 1.5em;
    }

    .faq {
        width: 95% !important;
        max-width: 95% !important;
        margin: 6.4px auto;
        padding: 12px;
    }

    .faq-section h2 {
        font-size: 1.6rem;
        line-height: 1.5em;
    }

    .faq summary {
        font-size: 1rem;
        line-height: 1.5em;
    }

    .faq p {
        font-size: 1rem;
        line-height: 1.5em;
        border-top: 1px solid #fff; /* White color for separator */
        padding-top: 10px; /* Space above the content */
    }

    .faq-section .additional-info {
        font-size: 1rem;
        line-height: 1.5em;
        padding: 6.4px;
        max-width: 90%;
        margin: 0 auto;
    }
}



/* ----------------------------------------------------
   Base styles for quote section
   ---------------------------------------------------- */

/* General container styles */
#quote-section .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: auto;
  margin-left: auto;
  width: 90%; /* Zmniejszono szerokość dla wyrównania do środka */
  box-sizing: border-box;
  align-items: center;
  justify-content: center; /* Wyśrodkowanie treści */
}

/* Columns styling */
#quote-section .col-sm-6 {
  flex: 0 0 auto;
  width: 45%; /* Zmniejszono szerokość dla zbliżenia do środka */
  box-sizing: border-box;
}

/* Title styling */
#quote-section .text-center {
  text-align: center !important;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: bold;
}

/* Image styling */
#quote-section .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-sizing: border-box;
  display: block;
  margin: auto;
}

/* Form styling */
#quote-section .col-sm-6 form {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

#quote-section .col-sm-6 form .form-group {
  width: 48%; /* Dwa pola obok siebie */
  box-sizing: border-box;
  margin-bottom: 10px; /* Dodano przerwy między polami */
}

#quote-section .col-sm-6 form .form-group.full-width {
  width: 100%;
  margin-bottom: 10px; /* Przerwa dla pól na pełną szerokość */
}

#quote-section .col-sm-6 form label {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: bold;
}

#quote-section .col-sm-6 form input,
#quote-section .col-sm-6 form textarea,
#quote-section .col-sm-6 form button {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

#quote-section .col-sm-6 form textarea {
  resize: none;
}

#quote-section .col-sm-6 form button {
  background-color: #edb41c;
  color: #343a40;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 12px;
  width: 100%;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

#quote-section .col-sm-6 form button:hover {
  background-color: #e0a800;
}

/* Checkbox alignment */
#quote-section .col-sm-6 form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px; /* Dodano odstęp od tekstu */
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px; /* Przerwa nad checkboxem */
}

#quote-section .col-sm-6 form .checkbox-group input[type="checkbox"] {
  margin: 0;
}

/* Responsive styles */

@media (max-width: 768px) {
  #quote-section .row {
    flex-direction: column;
    padding: 0 1rem;
    width: 100%;
    align-items: center;
  }

  #quote-section .col-sm-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  #quote-section .col-sm-6 form {
    padding: 15px;
    border: none;
    box-shadow: none;
    gap: 10px;
  }

  #quote-section .text-center {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  #quote-section .img-fluid {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  #quote-section .col-sm-6 form .form-group {
    width: 100%; /* Jedno pole na całą szerokość na mobilnych */
  }

  #quote-section .col-sm-6 form input,
  #quote-section .col-sm-6 form textarea,
  #quote-section .col-sm-6 form button {
    width: 100%;
  }
}





/* above map */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

/* Contact Info Section */
.contact-info-section {
    background-color: #ffffff;
    padding: 0 34px;
    max-width: 70%; /* Zwiększona szerokość sekcji, aby zbliżyć ją do środka */
    margin: 0 auto;
    text-align: left;
}

.contact-info-section h3 {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 17px 0;
    text-align: left;
}

.contact-info-section .lead-paragraph {
    font-size: 1.22rem; /* Reduced by 20% */
    font-weight: bold;
    text-align: center;
    padding: 24px 0; /* Slightly reduced padding */
}

.contact-info-section .content-wrapper {
    display: flex;
    justify-content: space-between; /* Default alignment */
    gap: 20px; /* Zmniejszony odstęp między tekstem a obrazem */
    flex-wrap: wrap;
    align-items: center;
}

.contact-info-section .text-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 80%; /* Zmniejszenie szerokości tekstu na tabletach i PC */
    margin: 0 auto; /* Wyśrodkowanie tekstu */
}

.contact-info-section .image-content {
    width: 45%; /* Dopasowanie obrazu do reszty kontenera */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Wyśrodkowanie obrazu */
}

.contact-info-section img {
    max-width: 100%;
    height: auto;
    border-radius: 6.8px;
}

.contact-info-section p,
.contact-info-section ul {
    font-size: 0.98rem; /* Reduced by 20% */
    margin-bottom: 10px; /* Slightly reduced spacing */
    color: #343a40;
}

.contact-info-section ul {
    padding-left: 20px;
    list-style-type: disc;
}

.contact-info-section ul li {
    margin-bottom: 3px; /* Slightly reduced margin */
    padding-left: 5px;
}

.contact-info-section a {
    color: #007bff;
    text-decoration: none;
}

.contact-info-section a:hover {
    text-decoration: underline;
}

/* Responsiveness */

/* tablets */
@media (max-width: 1024px) {
    .contact-info-section {
        padding: 20px 40px; /* Zwiększony margines po lewej i prawej stronie */
        max-width: 100%;
    }

    .contact-info-section h3 {
        font-size: 1.8rem;
        margin: 10px 0;
    }

    .contact-info-section .lead-paragraph {
        font-size: 1.2rem; /* Reduced by 20% */
        padding: 15px 0;
    }

    .contact-info-section ul {
        padding-left: 20px;
    }

    .contact-info-section ul li {
        margin-bottom: 8px; /* Adjusted spacing for smaller screens */
    }

    .contact-info-section .image-content {
        width: 45%; /* Adjusted size for tablets */
        justify-content: center; /* Center image */
        margin: 0 auto; /* Ensure it's perfectly centered */
    }

    .contact-info-section .text-content {
        max-width: 80%; /* Ensuring text section is not too wide */
        margin: 0 auto;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .contact-info-section {
        padding: 20px 10px;
        max-width: 100%;
    }

    .contact-info-section h3 {
        font-size: 1.4rem;
        margin: 8px 0;
    }

    .contact-info-section .lead-paragraph {
        font-size: 1rem; /* Reduced by 20% */
        padding: 10px 0;
    }

    .contact-info-section ul li {
        margin-bottom: 6px; /* Reduced spacing further for very small phones */
    }

    .contact-info-section .content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-section .text-content {
        width: 100%;
    }

    .contact-info-section .image-content {
        width: 75%; /* Adjusted size for very small phones */
        justify-content: center; /* Ensure image remains centered */
        margin: 0 auto; /* Ensure it's perfectly centered */
    }

    /* Max-width for text content on phones */
    .contact-info-section .text-content,
    .contact-info-section .lead-paragraph {
        max-width: 80%; /* Ensure text does not overflow on phones */
        margin: 0 auto;
    }

    .contact-info-section a {
        font-size: 1rem; /* Reduced link font size */
    }
}




/* map */
/* Map Section */
#map {
    margin: 50px 0;
}

#map h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
}

#we-work-here h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

#we-work-here iframe {
    width: 100%;
    height: calc(35vh + 100px); /* Dynamiczna wysokość mapy */
}

/* Responsiveness */

/* Tablets */
@media (max-width: 1024px) {
    #map {
        margin: 30px 0;
    }

    #map h2 {
        font-size: 2rem;
        margin-bottom: 10px; /* Ustawienie mniejszego marginesu */
    }

    #we-work-here h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    #we-work-here iframe {
        height: calc(45vh + 80px);
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    #map {
        margin: 20px 0;
    }

    #map h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    #we-work-here h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    #we-work-here iframe {
        height: calc(45vh + 60px);
    }
}
/*pre footer 1 */
body {
    font-family: 'Open Sans', sans-serif;
}

/* Locksmith Services Section */
.locksmith-services {
    padding: 28px 85px;
    margin-bottom: 42px;
    text-align: left;
    max-width: 1330px;
    margin: 0 auto;
}

.locksmith-services .services-intro {
    font-size: 1.95rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.locksmith-services .d-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 710px;
}

.locksmith-services .p-2 {
    flex: 1 1 47%;
    display: flex;
    align-items: center;
    font-size: 1.47rem;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.locksmith-services h4 {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: inherit;
    font-weight: bold;
}

.locksmith-services i {
    color: #000;
    margin-right: 10px;
    font-size: 1.85rem;
    font-weight: 900;
    -webkit-text-stroke: 1px #000;
}

/* Paragraph Margins */
.locksmith-services p {
    margin-bottom: 5px;
}

/* Responsiveness */

/* Tablets */
@media (max-width: 1024px) {
    .locksmith-services {
        padding: 20px 30px;
        margin-bottom: 30px;
    }

    .locksmith-services .services-intro {
        font-size: 1.55rem;
        margin-bottom: 18px;
    }

    .locksmith-services .d-flex {
        gap: 20px;
        max-width: 100%;
    }

    .locksmith-services .p-2 {
        flex: 1 1 100%;
        font-size: 1.3rem;
    }

    .locksmith-services i {
        margin-right: 10px;
        font-size: 1.55rem;
        -webkit-text-stroke: 0.9px #000;
    }

    .locksmith-services p {
        margin-bottom: 15px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .locksmith-services {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .locksmith-services .services-intro {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .locksmith-services .d-flex {
        gap: 15px;
    }

    .locksmith-services .p-2 {
        font-size: 1rem;
    }

    .locksmith-services i {
        margin-right: 8px;
        font-size: 1.1rem;
        -webkit-text-stroke: 0.75px #000;
    }
}

/* pre footer 2 */
body {
    font-family: 'Open Sans', sans-serif;
}

/* Estimate Section */
.estimate-section {
    background-color: #ffffff;
    padding: 0 20px;
    text-align: center;
}

.estimate-section h2 {
    font-weight: bold;
    color: #343a40;
    margin-bottom: 27px;
    font-size: 2.5rem;
    white-space: nowrap;
}

.estimate-text {
    background-color: #227244;
    color: #ffffff;
    padding: 5px 15px 30px 30px;
    border-radius: 8px;
    max-width: 54%;
    margin: 0 auto;
    text-align: left;
    font-size: 1.26rem;
}

.estimate-text p {
    margin-bottom: 0;
    line-height: 1.35;
}

.estimate-text p + p {
    margin-top: 27px;
}

/* New Button Group Class */
.new-button-group {
    display: flex;
    justify-content: center;
    gap: 160px;
    margin-top: 34px;
    margin-bottom: 40px;
}

.estimate-section .btn-warning {
    background-color: #edb41c;
    border-color: #edb41c;
    color: #343a40;
    padding: 16px 48px;
    border-radius: 34px;
    font-weight: bold;
    text-align: center;
    font-size: 1.45rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.estimate-section .btn-warning:hover {
    background-color: #d49d1b;
    border-color: #c99318;
    color: #fff;
    box-shadow: 0 0 9px rgba(237, 180, 28, 0.8);
    transform: scale(1.05);
}

/* Responsive Adjustments */

/* Tablets */
@media (max-width: 1024px) {
    .estimate-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        white-space: normal;
    }

    .estimate-text {
        max-width: 90%;
        padding: 10px 20px 35px;
        font-size: 1.2rem;
    }

    .estimate-text p + p {
        margin-top: 20px;
    }

    .new-button-group {
        flex-direction: row; /* Przyciski obok siebie w poziomie */
        align-items: center;
        gap: 20px; /* Zmniejszenie odstępu między przyciskami */
        margin-top: 20px;
        margin-bottom: 60px;
    }

    .estimate-section .btn-warning {
        font-size: 1.4rem;
        padding: 14px 36px;
        width: 80%;
        max-width: 280px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .estimate-section h2 {
        font-size: 1.6rem; /* Zmniejszono o 10% */
        margin-bottom: 15px;
        white-space: normal;
        padding: 15px 0; /* Dodano większy padding */
    }

    .estimate-text {
        max-width: 100%;
        padding: 9px 18px 22.5px; /* Zmniejszony padding o 10% */
        font-size: 1rem; /* Zmniejszono o 10% */
    }

    .estimate-text p + p {
        margin-top: 22.5px; /* Zmniejszono o 10% */
    }

    .new-button-group {
        flex-direction: column; /* Przyciski pod sobą */
        gap: 20px;
        margin: 30px 0 30px; /* Zmniejszenie marginesu o 10px na telefonach */
        justify-content: center; /* Wyśrodkowanie przycisków na telefonach */
        align-items: center; /* Wyśrodkowanie przycisków */
    }

    .estimate-section .btn-warning {
        width: 100%;
        max-width: 250px;
        padding: 10.8px 27px;
        font-size: 1.08rem;
    }
}


/* footer */
body {
    font-family: 'Open Sans', sans-serif;
}

footer {
    background-color: #212121;
    color: #fff;
    padding: 18px 0;
    font-family: 'Canva Sans', sans-serif;
    font-size: 1.3rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0px 0px 18px 0px;
}

.footer-section {
    flex: 1;
    margin: 0 36px;
}

.footer-logo {
    width: 198px;
    margin-right: 18px;
    margin-left: -81px;
    margin-top: 18px;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-contact {
    text-align: left;
    margin-left: -81px;
    margin-top: 0px; /* Zmniejszono margines górny */
}

.footer-contact p {
    margin: 8px 0; /* Zmniejszenie marginesów między paragrafami */
    line-height: 1.4; /* Zmniejszenie odstępów między liniami */
    font-size: 1.1rem; 
}

.footer-areas ul,
.footer-links ul,
.footer-social .social-icons {
    margin: 4.5px 0;
}

.footer-areas ul,
.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-areas ul li a,
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer-areas ul li a:hover,
.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-areas ul li,
.footer-links ul li {
    margin: 10px 0;
}

.footer-links {
    margin-right: 0px;
}

.footer-social {
    text-align: center;
    margin-right: 0px;
    margin-top: 0px; /* Poprawiono margines górny */
}

.footer-social p,
.footer-areas p,
.footer-links p {
    font-size: 1.3rem;
    margin-bottom: 22.5px;
    line-height: 1.5;
    font-weight: 700; /* Grubsza czcionka dla wszystkich nagłówków */
}

.footer-social .social-icons {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
    gap: 36px;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.footer-social .social-icons a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.footer-social .social-icons a.fa-x-twitter {
    color: #1da1f2;
    background-color: #fff;
    border-radius: 50%;
    padding: 2.7px;
    box-sizing: border-box;
}

.footer-social .social-icons a:hover {
    color: #edb41c;
}

.footer-bottom {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 9px 0;
    font-size: 0.65rem;
    border-top: none;
    margin-top: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-bottom p {
    display: inline;
    margin: 0 4.5px;
}

.custom-footer-button {
    display: inline-block;
    padding: 19.8px 27px;
    background-color: #edb41c;
    color: #000;
    text-decoration: none;
    border-radius: 45px;
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
    margin: 18px;
}

.custom-footer-button:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

body, html {
    margin: 0;
    padding: 0;
}

/* Responsive Design */
/* tablets */
@media screen and (max-width: 1024px) {
    /* Zwiększenie czcionek o 10% w wersji na telefon */
    body, footer, .footer-container, .footer-section, .footer-logo, .footer-contact p, .footer-areas p, .footer-links p, .footer-social p, .footer-bottom p, .custom-footer-button {
        font-size: 1.1rem; /* Zwiększenie czcionek o 10% względem wersji wcześniejszej */
    }

    /* Zmniejszenie wysokości całej sekcji */
    footer {
        padding: 12px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-section {
        text-align: center;
        margin: 12px 0;
        font-size: 1.1rem; /* Zmniejszenie odstępów między sekcjami */
    }

    .footer-logo {
        margin: 0 auto;
        text-align: center;
        width: 200px; /* Zmniejszenie logo */
    }

    .footer-logo img {
        width: 100%;
    }

    .footer-contact {
        margin-left: 0;
        text-align: center;
        margin-top: 16px; /* Zmniejszenie marginesu górnego */
    }

    .footer-areas ul li,
    .footer-links ul li {
        margin: 6px 0; /* Zmniejszenie marginesu */
    }

    .footer-social .social-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px; /* Zmniejszenie odstępów */
    }

    .footer-bottom {
        font-size: 0.56em;
        margin-top: 16px;
    }

    .custom-footer-button {
        padding: 16px 22px; /* Zmniejszenie paddingu */
        font-size: 1.5rem;
    }
}

/* Responsive Design */
/* mobile phones */
@media screen and (max-width: 768px) {
    /* Zwiększenie czcionek o 10% w wersji na telefon */
    body, footer, .footer-container, .footer-section, .footer-logo, .footer-contact p, .footer-areas p, .footer-links p, .footer-social p, .footer-bottom p, .custom-footer-button {
        font-size: 1rem; /* Zwiększenie czcionek o 10% względem wersji wcześniejszej */
    }

    /* Zmniejszenie wysokości całej sekcji */
    footer {
        padding: 12px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-section {
        text-align: center;
        margin: 12px 0;
        font-size: 1rem; /* Zmniejszenie odstępów między sekcjami */
    }

    .footer-logo {
        margin: 0 auto;
        text-align: center;
        width: 200px; /* Zmniejszenie logo */
    }

    .footer-logo img {
        width: 100%;
    }

    .footer-contact {
        margin-left: 0;
        text-align: center;
        margin-top: 16px; /* Zmniejszenie marginesu górnego */
    }

    .footer-areas ul li,
    .footer-links ul li {
        margin: 6px 0; /* Zmniejszenie marginesu */
    }

    .footer-social .social-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px; /* Zmniejszenie odstępów */
    }

    .footer-bottom {
        font-size: 0.6rem;
        margin-top: 16px;
    }

    .custom-footer-button {
        padding: 16px 22px; /* Zmniejszenie paddingu */
        font-size: 1.5rem;
    }
}



/* privacy*/
/* Stylizacja dla sekcji Privacy Notice */
body.privacy-notice-body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding: 20px;
    color: #333;
}

/* Kontener */
.privacy-notice-container {
    margin: 0 auto;
    max-width: 900px;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Nagłówki */
.privacy-notice-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.privacy-notice-h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    color: #34495e;
    margin: 30px 0 15px;
}

.privacy-notice-h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 0 10px;
}

/* Paragrafy */
.privacy-notice-p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Stylizacja linków */
.privacy-notice-a {
    color: #0066cc;
    text-decoration: none;
}

.privacy-notice-a:hover {
    text-decoration: underline;
}

/* Listy */
.privacy-notice-ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.privacy-notice-ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Stylizacja adresu */
.privacy-notice-address {
    font-style: normal;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 768px) {
    .privacy-notice-container {
        padding: 20px;
    }

    .privacy-notice-h1 {
        font-size: 28px;
    }

    .privacy-notice-h2 {
        font-size: 1.6rem;
    }

    .privacy-notice-h3 {
        font-size: 20px;
    }

    .privacy-notice-p,
    .privacy-notice-ul li {
        font-size: 14px;
    }
}
/* terms */
/* Ogólne ustawienia dla sekcji Terms and Conditions */
.terms-body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Kontener główny */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Stylizacja nagłówków */
.terms-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.terms-h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    color: #34495e;
    margin: 30px 0 15px;
}

.terms-h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    color: #34495e;
    margin: 20px 0 10px;
}

/* Stylizacja paragrafów */
.terms-p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Stylizacja linków */
.terms-a {
    color: #0066cc;
    text-decoration: none;
}

.terms-a:hover {
    text-decoration: underline;
}

/* Stylizacja list */
.terms-ul {
    margin: 0 10px 20px 20px;
    list-style-type: disc;
}

.terms-ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Stylizacja linków w tabeli treści */
.terms-ul a {
    color: #2980b9;
}

.terms-ul a:hover {
    text-decoration: underline;
}

/* Stylizacja tabel */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* Media Queries - responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .terms-body {
        padding: 10px;
    }

    .terms-container {
        padding: 20px;
    }

    .terms-h1 {
        font-size: 28px;
    }

    .terms-h2 {
        font-size: 1.6rem;
    }

    .terms-h3 {
        font-size: 18px;
    }

    .terms-p, .terms-ul li {
        font-size: 14px;
    }
}
/* cookies */
        /* Stylizacja dla sekcji Cookies */
        body.cookies-body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            background-color: #f9f9f9;
            padding: 20px;
            color: #333;
        }

        /* Kontener */
        .cookies-body section {
            max-width: 900px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin-bottom: 20px;
        }

        /* Nagłówki */
        .cookies-body h1, .cookies-body h2, .cookies-body h3 {
            font-family: 'Barlow Condensed', sans-serif;
            color: #2c3e50;
            margin-left: 10px;
            margin-right: 10px;
        }

        .cookies-body h1.section-cookie-header {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        .cookies-body h2 {
            font-size: 28px;
            font-family: 'Barlow', sans-serif;
            color: #34495e;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .cookies-body h3 {
            font-size: 24px;
            color: #34495e;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        /* Paragrafy */
        .cookies-body p {
            font-size: 16px;
            color: #555;
            margin-bottom: 20px;
            margin-left: 10px;
            margin-right: 10px;
        }

        /* Stylizacja linków (odnośników) */
        .cookies-body a {
            color: inherit; /* Same color as the surrounding text */
            text-decoration: none;
        }

        .cookies-body a:hover {
            text-decoration: underline;
        }

        /* Stylizacja szczegółów cookies */
        .cookies-body .cookie-details {
            background-color: #f4f4f4;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            margin-left: 10px;
            margin-right: 10px;
        }

        /* Analytics Section */
        .cookie-details-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin-bottom: 20px;
        }

        /* Media queries dla mniejszych ekranów */
        @media (max-width: 768px) {
            .cookies-body section {
                padding: 20px;
            }

            .cookies-body h1.section-cookie-header {
                font-size: 28px;
            }

            .cookies-body h2 {
                font-size: 1.6rem;
            }

            .cookies-body h3 {
                font-size: 18px;
            }

            .cookies-body p {
                font-size: 14px;
            }

            .cookies-body .cookie-details {
                margin-left: 10px;
                margin-right: 10px;
            }
        }
/* error */
        /* Stylizacja dla strony błędu 404 */
        body.error-404-body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            background-color: #f9f9f9;
            padding: 20px;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
        }

        /* Kontener */
        .error-404-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-align: center;
        }

        /* Nagłówek */
        .error-404-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        /* Wiadomość */
        .error-404-message {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
        }

        /* Ikona 404 */
        .error-404-icon {
            font-size: 80px;
            color: #00aaff;
            margin-bottom: 20px;
        }

        /* Przycisk powrotu */
        .go-back-button {
            display: inline-block;
            padding: 12px 24px;
            background-color: transparent;
            color: #00aaff;
            border: 2px solid #00aaff;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

        .go-back-button:hover {
            background-color: #00aaff;
            color: #fff;
        }

        /* Media queries dla mniejszych ekranów */
        @media (max-width: 768px) {
            .error-404-container {
                padding: 20px;
            }

            .error-404-title {
                font-size: 28px;
            }

            .error-404-message {
                font-size: 16px;
            }

            .error-404-icon {
                font-size: 60px;
            }

            .go-back-button {
                font-size: 14px;
            }
        }
/* ty page */
        /* Stylizacja dla unikalnej sekcji podziękowania (Thank You) */
        body.thank-you-body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            background-color: #f9f9f9;
            padding: 20px;
            color: #333;
        }

        /* Kontener */
        .thank-you-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: #fff;
            padding: 40px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            text-align: center;
        }

        /* Nagłówek */
        .thank-you-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        /* Wiadomość */
        .thank-you-message {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
        }

        /* Sekcja potwierdzenia zamówienia */
        .thank-you-receipt {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px; /* Ustalony równy padding z góry i z dołu */
            background-color: #f4f4f4;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        /* Ikona */
        .thank-you-receipt i.fa-envelope {
            font-size: 42px;
            color: #34495e;
            margin-right: 15px;
        }

        /* Tekst potwierdzenia */
        .thank-you-receipt-text {
            font-size: 16px;
            color: #555;
            line-height: 1.4;
            padding: 0;
            margin-top: 10px; /* Dodany dodatkowy margines nad tekstem */
            max-width: 600px;
        }

        /* Media queries dla mniejszych ekranów */
        @media (max-width: 768px) {
            .thank-you-container {
                padding: 20px;
            }

            .thank-you-title {
                font-size: 28px;
            }

            .thank-you-message {
                font-size: 16px;
            }

            .thank-you-receipt i.fa-envelope {
                font-size: 36px;
            }

            .thank-you-receipt-text {
                font-size: 14px;
            }
        }

/* General styles for cookie consent */
.cookie-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #00aaff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 24px;
    z-index: 1001;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    color: #2c3e50;
    z-index: 1001;
    width: auto;
    max-width: 90%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.cookie-popup button {
    padding: 8px 16px;
    background-color: #00aaff;
    border: none;
    color: white;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
}

/* Styles for cookie consent container */
.cookie-consent-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f9f9f9;
    padding: 20px;
    border: 2px solid #00aaff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1000;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

.cookie-consent-header {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cookie-consent-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-consent-toggle span {
    flex-grow: 1;
    font-size: 1rem;
    margin-right: 20px;
}

.arrow-icon {
    font-size: 1.2rem;
    margin-left: -15px;
    cursor: pointer;
    transition: transform 0.3s;
}

/* Updated toggle switch styles */
.cookie-toggle-switch {
    width: 48px;
    height: 24px;
    background-color: #ccc;
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-toggle-switch:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.cookie-toggle-switch.active {
    background-color: #00aaff;
}

.cookie-toggle-switch.active:before {
    transform: translateX(24px);
}

.always-active {
    font-size: 1rem;
    color: #00aaff;
    font-weight: bold;
    margin-left: auto;
}

.cookie-details {
    display: none;
    font-size: 0.9rem;
    padding: 8px;
    margin-top: 5px;
    background-color: #f0f8ff;
    border-radius: 5px;
}

.cookie-details p {
    margin: 4px 0;
}

.cookie-consent-buttons button {
    padding: 10px 20px;
    border: 2px solid #00aaff;
    background-color: transparent;
    color: #00aaff;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-consent-buttons button:hover {
    background-color: #00aaff;
    color: #fff;
}

.cookie-consent-buttons .accept-all {
    background-color: #00aaff;
    color: #fff;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 600px) {
    .cookie-popup {
        max-width: 90%;
        font-size: 13px;
        padding: 10px 15px;
    }

    .cookie-popup button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .cookie-consent-container {
        width: 95%;
        padding: 15px;
        font-size: 0.9rem;
    }

    .cookie-toggle-switch {
        width: 40px;
        height: 20px;
    }

    .cookie-toggle-switch:before {
        width: 16px;
        height: 16px;
    }

    .cookie-toggle-switch.active:before {
        transform: translateX(20px);
    }

    .cookie-consent-buttons button {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-top: 10px;
    }
}

