body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #3d3d3d;
    color: white;
}

h1 {
    font-size: xx-large;
}

section {
    background-color: white;
    color: black;
}

.wrapper {
    padding: 10px 40px;
    padding: 15px;
}

nav {
    display: flex;
    /* enable flex layout */
    justify-content: space-between;
    /* push items to the edges */
    align-items: center;
    /* vertically center items */
    padding: 10px 40px;
    background-color: #3d3d3d;
    ;
    /* optional navbar color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* subtle shadow */
}

nav img {
    height: 50px;
    width: 130px;
}

nav ul {
    list-style: none;
    display: flex;
    /* display links in a row */
    gap: 20px;
    /* space between links */
    margin: 0;
    /* remove default margin */
    padding: 0;
}

nav li {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    transition: .5s;
    color: #cfcfcf;
    /* optional hover color */
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Default hide burger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.nav-toggle i {
    font-size: 22px;
    /* thinner, smaller look */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When menu is open (X icon), animate rotation */
.nav-toggle.open i {
    transform: rotate(180deg);
}

footer {
    display: flex;
    flex-wrap: wrap;
    background-color: #3d3d3d;
    padding: 40px 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    /* subtle top shadow */
    justify-content: center;
    /* center horizontally */
    align-items: flex-start;
    /* align columns at the top */
    gap: 20px;
    /* space between columns */
    margin: 0;
}

footer .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
    height: 200px;
    margin-bottom: 20px;
}

footer .footer-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

footer .footer-section ul li {
    margin-bottom: 10px;
}

footer .footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-section ul li a:hover {
    color: #cfcfcf;
}

.cwinfo {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 1%;
    padding: 0px;
}

.home-introduction-section {
  width: 100%;
  height: 295px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
    url('Assets/courtyard.webp'); /* smaller compressed WebP */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Mobile-specific optimization */
@media (max-width: 768px) {
  
}

.home-introduction-section .introduction-element {
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 100%;
    justify-content: center;

}

.home-introduction-section .introduction-element img {
    min-width: 500px;
    width: 90%;
    height: 90%;
}

@media (max-width: 1200px) {

    #intro-image {
        display: none;
    }

    .home-introduction-section {
        height: 100%;
    }

    .introduction-element h1,
    p {
        text-align: center;
    }

    .home-services-item p {
        text-align: start;
    }

    .home-introduction-section .introduction-element {
        height: 100%;
        width: 100%;
        justify-content: center;

    }

    .introduction-socials {
        justify-content: space-evenly;

    }
}

.home-introduction-section .introduction-element:first-child {
    flex: 2;
}

.home-introduction-section .introduction-element:last-child {
    flex: 1;
}

.home-introduction-section .introduction-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.introduction-socials .social-icon {
    background-color: white;
    color: #3d3d3d;
    font-size: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    /* pill shape for icons + handle */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 0 15px;
    gap: 10px;
    min-width: 160px;
}

.introduction-socials .social-icon i {
    pointer-events: none;
}

/* Platform hover colors */
.introduction-socials .social-icon.facebook:hover {
    background: #3b5998;
    color: white;
}

.introduction-socials .social-icon.instagram:hover {
    background: #e1306c;
    color: white;
}

.introduction-socials .social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Handle text */
.introduction-socials .social-handle {
    font-size: 16px;
    font-weight: 500;
    color: #3d3d3d;
    transition: color 0.3s;
}

.introduction-socials .social-icon:hover .social-handle {
    color: white;
}

/* Hover lift + scale */
.introduction-socials .social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.home-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.home-services-item {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #838383;
    color: white;
    min-width: 45%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.home-services-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: black;
    background-color: rgb(177, 177, 177);
}

.home-services-item h2 span {
    font-size: x-small;
    font-weight: normal;
}

/* Contact link styling */
.home-services-item .view-pricing {
    color: white;
    text-decoration: none;
}

.home-services-item .view-pricing:hover {
    text-decoration: underline;
}

/* Toggle button */
.toggle-list {
    display: none;
    /* only visible in mobile */
    background: none;
    border: none;
    color: white;
    padding: 5px 10px;
    margin-bottom: 10px;
    cursor: pointer;
    width: fit-content;
    margin-top: -20px;
}

.toggle-list:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.home-services-item ul {
    padding-left: 20px;
    margin: 0;
}




.why-us-section {
    background-color: white;
    color: black;
    text-align: center;
}

.why-us-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.why-us-card {
    flex: 1 1 220px;
    max-width: 250px;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.why-us-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-icon img {
    width: 60px;
    height: 60px;
}

.why-us-card h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    font-size: 18px;
}

.why-us-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}






/* ---------- PRICING PAGE SPECIFIC ---------- */
/* ---------- DYNAMIC PRICING CARDS---------- */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #f0f0f0;
    border-color: #aaa;
}

.tab-btn.active {
    background: #aaa;
    color: #fff;
    border-color: #888;
}

/* Hide cards by default, show only active */
.pricing-card {
    display: none;
}

.pricing-card.active {
    display: block;
}

.pricing-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.pricing-section h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.pricing-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.pricing-card label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.pricing-card input[type="text"],
.pricing-card input[type="number"],
.pricing-card select {
    width: 100%;
    padding: 10px 0px 10px 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #fdfdfd;
}

.pricing-card input[type="range"] {
    width: 100%;
    margin-bottom: 20px;
}

.pricing-card .price-output {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.pricing-card .btn {
    display: inline-block;
    background-color: #aaa;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pricing-card .btn:hover {
    background-color: #888;
}

/* Vehicle options styling */
.vehicle-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vehicle-options label {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: background 0.3s, border-color 0.3s;
    min-width: 80px;
    color: #555;
}

.vehicle-options input[type="radio"] {
    display: none;
}

.vehicle-options input[type="radio"]:checked+span {
    background-color: #ccc;
    color: #fff;
    border-radius: 8px;
    padding: 5px 10px;
}

.vehicle-options label:hover {
    border-color: #aaa;
    background-color: #f0f0f0;
}

.item-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.item-categories label {
    display: block;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.item-categories input[type="checkbox"] {
    margin-right: 10px;
}

.item-categories .example {
    font-size: 0.85rem;
    color: #555;
}

#weight-section {
    margin-top: 15px;
}

/* ----------------- ABOUT PAGE ----------------- */

/* Our Story Section */
#about-intro {
    padding-inline: 90px;

}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.about-story p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Values Section */
.about-values {
    background-color: #f8f8f8;
    color: black;
    padding: 60px 20px;
    text-align: center;
}

.about-values h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    background-color: white;
    flex: 1 1 220px;
    max-width: 250px;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.value-card i {
    font-size: 2.5rem;
    color: #3d3d3d;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* FAQ Section */
.about-faq {
    background-color: #f8f8f8;
    padding: 0px 20px;
    text-align: center;
}

.about-faq h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 15px auto;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 10px;
}

.faq-answer p {
    margin: 10px 0;
}

/* CTA Section */
.about-cta {
    background-color: #3d3d3d;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-cta .btn {
    background-color: #aaa;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-cta .btn:hover {
    background-color: #888;
    transform: translateY(-3px);
}



/* contact page specific */


/* ----------------- Social Contact Section ----------------- */

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-socials .social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: white;
    color: #3d3d3d;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, background-color 0.3s;
}

.contact-socials .social-icon i {
    font-size: 18px;
}

/* Platform hover colors */
.contact-socials .facebook:hover {
    background: #3b5998;
    color: white;
}

.contact-socials .instagram:hover {
    background: #e1306c;
    color: white;
}

.contact-socials .whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-socials .call:hover {
    background: #555;
    color: white;
}

.contact-socials .social-icon:hover {
    transform: translateY(-3px);
}

/* ----------------- Contact Form Section ----------------- */
.contact-section {
    background-color: #f8f8f8;
    color: black;
    text-align: center;
}

.contact-section h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;


}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 0px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fdfdfd;
    transition: border-color 0.3s, box-shadow 0.3s;
    text-indent: 10px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #aaa;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    outline: none;

}

.contact-form button.btn {
    background-color: #3d3d3d;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
}

.contact-form button.btn:hover {
    background-color: #555;
    transform: translateY(-3px);
}

.services-grid label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-right: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  background: #fff;
  color: #333;
}

.contact-form textarea {
  resize: vertical;   /* can only resize up/down */
}

.services-grid input[type="checkbox"] { transform: scale(1.05); }
#other-service-text { width:100%; padding:10px; border-radius:8px; border:1px solid #ccc; }


.collection-types-section {
    display: flex;
    color: black;
    justify-content: space-evenly;
    background-color: rgb(61, 61, 61);
}

.collection-types-list {
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.collection-item {
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.collection-item i {
    font-size: 20px;
    color: rgb(133, 197, 133);
    /* green tick */
}


.contact-form .form-group.terms {
    display: flex;
    align-items: center;
    /* vertically center checkbox and label */
    gap: 10px;
    /* spacing between checkbox and label */
    flex-wrap: wrap;
    /* wrap to new line if needed on small screens */
}

.contact-form .form-group.terms label {
    margin: 0;
    /* remove default margin so it aligns nicely */
    font-weight: 500;
    color: #333;
}

.contact-form .form-group.terms a {
    color: #3d3d3d;
    text-decoration: underline;
    cursor: pointer;
}

.contact-form .form-group.terms a:hover {
    color: #555;
}

/* Checkbox and label inline */
.privacy-agreement {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.privacy-agreement label {
    cursor: pointer;
    font-weight: 500;
    color: #333;
    margin-top: 8px;
}

.privacy-link {
    color: #3d3d3d;
    text-decoration: underline;
    cursor: pointer;
}

/* Privacy Policy Popup Overlay */
.privacy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: flex-start;
    /* start at top for mobile */
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Privacy Policy Content Box */
.privacy-content {
    background: #fff;
    color: #000;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: left;
    box-sizing: border-box;
}

/* Close Button */
#close-privacy {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

#close-privacy:hover {
    color: #555;
}

/* Scrollbar styling for modern browsers */
.privacy-content::-webkit-scrollbar {
    width: 8px;
}

.privacy-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.privacy-content::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 8px;
}

.privacy-content::-webkit-scrollbar-thumb:hover {
    background: #888;
}



/* ---------------- Responsive Adjustments ---------------- */

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 20px;
    }
}

/* Responsive layout */
    @media (max-width: 930px) {
        nav {
            position: relative;
            padding: 10px 10px;
        }

        .nav-toggle {
            display: block;
            z-index: 1100;
        }

        nav ul {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #3d3d3d;
            flex-direction: column;
            width: 100%;
            max-height: 0;
            /* collapsed by default */
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
            /* smooth open/close */
            box-shadow: 0 8px 8px rgba(0, 0, 0, 0.7);
        }

        nav ul li {
            width: 100%;
            text-align: center;
            padding-bottom: 15px;
        }

        nav ul li a {
            display: block;
            /* span full width */
            padding: 15px;
            width: 100%;
            padding: 0px;
        }

        nav ul.show {
            max-height: 500px;
            /* enough to show all items */
        }

        .home-introduction-section {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
      url('Assets/courtyard_mobile.webp');
    background-attachment: scroll; /* ensures smooth mobile scroll */
  }
    

    footer {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    footer .footer-section {
        width: 40%;
        /* two per row */
        margin-bottom: 20px;
        height: auto;
        /* let them expand naturally */
    }

    footer .footer-section h2 {
        font-size: 16px;
        /* smaller heading for mobile */
    }

    footer .footer-section ul li {
        font-size: 12px;
        /* smaller text */
    }

    .introduction-socials .social-icon {
        margin-top: -15px;
        font-size: 30px;
        width: 30px;
        min-width: auto;
        border-radius: 100%;
    }

    .introduction-socials .social-icon span {
        display: none;
    }

    .why-us-card {
        max-width: 100px;
        padding: 15px 10px;
    }

    .why-us-icon {
        width: 60px;
        height: 60px;
    }

    .why-us-icon img {
        width: 35px;
        height: 35px;
    }

    .why-us-card h2 {
        font-size: 14px;
    }

    /* Descriptions remain hidden */
    .why-us-card p {
        display: none;
    }

    .home-services-item h2 {
        font-size: 16px;
        padding: 10px;
    }

    .home-services-item {
        min-width: 100%;
        padding: 0px;
    }

    .home-services-item p {
        display: none;
    }

    /* Hide service lists initially on small screens */
    .home-services-item ul {
        display: none;
        margin-top: -10px;
        padding-left: 30px;
        margin-bottom: 20px;
    }

    /* Show view more button only on small screens */
    .home-services-item .toggle-list {
        display: inline-block;
        /* or block if you want full width */
    }

    /* Optional: spacing for list items */
    .home-services-item ul li {
        margin-bottom: 5px;
    }

    /* Our Story Section */
    #about-intro {
        padding-inline: 20px;
    }

    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .about-hero .hero-content {
        max-width: 100%;
    }

    .about-hero .hero-image img {
        width: 100%;
        max-width: 400px;
        margin-top: 20px;
    }

    .value-card {
        max-width: 120px;
        /* smaller so multiple fit per row */
        padding: 15px 10px;
        /* tighter spacing */
    }

    .value-card i {
        font-size: 1.5rem;
        /* smaller icons */
        margin-bottom: 10px;
    }

    .value-card h3 {
        font-size: 14px;
    }

    .value-card p {
        display: none;
        /* hide description text for compact layout */
    }

    .privacy-content {
        padding: 20px;
        max-width: 95%;
        font-size: 0.9rem;
    }

    .privacy-content h2 {
        text-align: center;
    }

    .privacy-content h3 {
        text-align: left;
    }

    #close-privacy {
        font-size: 24px;
        top: 10px;
        right: 15px;
    }

    .collection-item {
        font-size: 12px;
        padding: 12px 15px;
        justify-content: start;
        align-items: start;
        width: 100px;

    }

    .collection-item i {
        font-size: 16px;

    }

    .collection-types-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 0px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-socials {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contact-socials .social-icon {
        width: 50%;
        padding: 10px;
        margin-top: 5px;
        justify-content: center;
    }

}