:root {
    --color-raspberry: #E91E63; /* Vibrant Pink/Raspberry */
    --color-yellow: #FFEB3B; /* Bright Yellow */
    --color-salad: #8BC34A; /* Fresh Salad Green */
    --color-dark-text: #2C3E50; /* Dark Blue/Grey for text and dark backgrounds */
    --color-light-text: #F8F9FA; /* Off-white for light backgrounds */
    --color-grey-subtle: #CED4DA; /* Light grey for subtle elements */
    --color-white: #FFFFFF;
    --color-black: #000000;

    --gradient-raspberry-yellow: linear-gradient(45deg, var(--color-raspberry), var(--color-yellow));
    --gradient-yellow-salad: linear-gradient(45deg, var(--color-yellow), var(--color-salad));
    --gradient-salad-raspberry: linear-gradient(45deg, var(--color-salad), var(--color-raspberry));

    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-deep: 0 12px 35px rgba(0, 0, 0, 0.3);

    --transition-speed: 0.3s ease-in-out;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-dark-text);
    background-color: var(--color-light-text);
    overflow-x: hidden; /* Prevent horizontal scroll from AOS */
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark-text);
    position: relative;
    display: inline-block;
    background: var(--gradient-raspberry-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-raspberry);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--color-raspberry);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-dark-text);
}

/* Buttons */
.button {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-speed);
}

.button.primary {
    background-color: var(--color-raspberry);
    color: var(--color-white);
    border: 2px solid var(--color-raspberry);
}

.button.primary:hover {
    background-color: var(--color-dark-text);
    border-color: var(--color-dark-text);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

.button.secondary {
    background-color: var(--color-yellow);
    color: var(--color-dark-text);
    border: 2px solid var(--color-yellow);
}

.button.secondary:hover {
    background-color: var(--color-dark-text);
    border-color: var(--color-dark-text);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
}

/* Cookie Banner */
.cookie-banner-top {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark-text);
    color: var(--color-light-text);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
    transform: translateY(-100%);
    transition: transform 0.5s ease-out;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.cookie-banner-top.show {
    transform: translateY(0);
}

.cookie-banner-top p {
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.cookie-banner-top .cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-banner-top .button {
    margin: 0;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 25px;
}

.cookie-banner-top .button.primary {
    background-color: var(--color-salad);
    border-color: var(--color-salad);
    color: var(--color-dark-text);
}

.cookie-banner-top .button.primary:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.cookie-banner-top .button.secondary.hollow {
    background: transparent;
    border-color: var(--color-light-text);
    color: var(--color-light-text);
}

.cookie-banner-top .button.secondary.hollow:hover {
    background-color: var(--color-light-text);
    color: var(--color-dark-text);
}

.cookie-banner-top .cookie-policy-link {
    color: var(--color-yellow);
    text-decoration: underline;
}

.cookie-banner-top .cookie-policy-link:hover {
    color: var(--color-raspberry);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal-content {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-deep);
    position: relative;
}

.cookie-modal-content h3 {
    color: var(--color-dark-text);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    background: var(--gradient-raspberry-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cookie-modal-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-grey-subtle);
}

.cookie-category:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.cookie-category label {
    font-weight: 600;
    color: var(--color-dark-text);
    display: inline-block;
    margin-left: 0.5rem;
    cursor: pointer;
    font-size: 1.1rem;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
    accent-color: var(--color-salad);
}

.cookie-modal-actions {
    text-align: right;
    margin-top: 2rem;
}

.cookie-modal-actions .button {
    background-color: var(--color-salad);
    border-color: var(--color-salad);
    color: var(--color-dark-text);
}

.cookie-modal-actions .button:hover {
    background-color: var(--color-raspberry);
    border-color: var(--color-raspberry);
    color: var(--color-white);
}

/* Header Navigation */
.header-nav {
    background-color: #000;
    padding: 1rem 0;
    transition: background-color var(--transition-speed), padding var(--transition-speed);
    z-index: 999;
    top: 0;
    width: 100%;
}

.header-nav.scrolled {
    background-color: rgba(44, 62, 80, 0.95); /* Dark background on scroll */
    padding: 0.75rem 0;
    box-shadow: var(--shadow-light);
}

.site-logo img {
    height: 40px; /* Adjust as needed */
    transition: height var(--transition-speed);
}

.header-nav.scrolled .site-logo img {
    height: 35px;
}

.main-menu .menu a {
    color: #fff;
    font-weight: 400;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color var(--transition-speed);
}

.main-menu .menu a:hover {
    color: var(--color-yellow);
}

.main-menu .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-yellow);
    transition: width var(--transition-speed);
}

.main-menu .menu a:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('photos/graphics/match3-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(12 12 12 / 80%), rgb(18 18 18 / 80%));
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-section::before, .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-section::before {
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.3) 0%, rgba(255, 255, 255, 0) 70%); /* Salad overlay */
}

.hero-section::after {
    background: linear-gradient(225deg, rgba(233, 30, 99, 0.3) 0%, rgba(255, 255, 255, 0) 70%); /* Raspberry overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 5rem; /* Space for fixed header */
}

.hero-heading {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: var(--gradient-raspberry-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 235, 59, 0.7)); /* Soft glow */
}

.lead-text {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.ghost-button {
    background: var(--gradient-raspberry-yellow);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ghost-button:hover {
    background-color: var(--color-white);
    color: var(--color-raspberry);
    border-color: var(--color-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
}

/* About Section */
.about-section {
    background-color: var(--color-white);
}

.team-member-card {
    background-color: var(--color-light-text);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--color-raspberry);
    box-shadow: 0 0 0 4px var(--color-yellow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.team-member-card:hover .team-member-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 0 4px var(--color-salad);
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark-text);
}

.team-member-title {
    font-size: 1rem;
    color: #777;
    margin-bottom: 1rem;
}

.team-member-quote {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: auto; /* Pushes quote to bottom if card height varies */
}

/* Services Section */
.services-section {
    background: var(--gradient-yellow-salad);
    color: var(--color-dark-text);
}

.services-section .section-title {
    background: var(--gradient-salad-raspberry);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-section .section-title::after {
    background: var(--color-salad);
}

.service-card {
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.video-microdemo {
    width: 100%;
    height: 200px;
    background-color: var(--color-grey-subtle);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-microdemo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-microdemo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-dark-text);
}

.service-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-top: auto;
}

/* Team Section (Timeline) */
.team-section {
    background-color: var(--color-light-text);
}

.team-timeline-container {
    overflow-x: scroll;
    padding-bottom: 2rem;
    position: relative;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.team-timeline-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.team-timeline-track {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}

.team-timeline-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-grey-subtle);
    transform: translateY(-50%);
    z-index: 0;
}

.team-member-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 1.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.team-member-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background-color: var(--color-raspberry);
    border-radius: 50%;
    border: 3px solid var(--color-white);
    z-index: 2;
}

.team-member-node:first-child {
    margin-left: 0;
}

.team-member-node:last-child {
    margin-right: 0;
}

.team-member-node .team-member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-yellow);
    box-shadow: var(--shadow-light);
    margin-bottom: 0.75rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.team-member-node:hover .team-member-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 0 3px var(--color-salad);
}

.team-member-node .team-member-name {
    font-weight: 600;
    color: var(--color-dark-text);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.team-member-node .team-member-join-date {
    font-size: 0.85rem;
    color: #777;
}

/* Industries (Portfolio) Section */
.industries-section {
    background: var(--gradient-salad-raspberry);
    color: var(--color-light-text);
}

.industries-section .section-title {
    background: var(--gradient-yellow-salad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industries-section .section-title::after {
    background: var(--color-yellow);
}

.industries-section .section-subtitle {
    color: var(--color-light-text);
}

.industry-badge-card {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-speed), background-color var(--transition-speed), box-shadow var(--transition-speed);
}

.industry-badge-card:hover {
    transform: translateY(-7px);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-medium);
}

.industry-badge-card .icon-large {
    font-size: 4rem;
    color: var(--color-yellow);
    margin-bottom: 1rem;
    transition: transform var(--transition-speed);
}

.industry-badge-card:hover .icon-large {
    transform: scale(1.1) rotate(5deg);
    color: var(--color-salad);
}

.industry-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.industry-intro {
    font-size: 0.95rem;
    color: var(--color-light-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.industry-link {
    color: var(--color-yellow);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.industry-link:hover {
    color: var(--color-white);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonial-map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    margin-top: 2rem;
}

/* Leaflet custom marker styling (optional, but good for branding) */
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: var(--color-dark-text);
    color: var(--color-light-text);
    border-radius: 8px;
}

.leaflet-popup-content a {
    color: var(--color-yellow);
}

/* Testimonial Modal */
.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.testimonial-modal.show {
    opacity: 1;
    visibility: visible;
}

.testimonial-modal-content {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    box-shadow: var(--shadow-deep);
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform var(--transition-speed);
}

.testimonial-modal.show .testimonial-modal-content {
    transform: translateY(0);
}

.testimonial-modal .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-speed);
}

.testimonial-modal .close-button:hover {
    color: var(--color-raspberry);
}

.modal-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--color-salad);
    box-shadow: 0 0 0 3px var(--color-yellow);
}

.modal-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-dark-text);
    margin-bottom: 0.5rem;
}

.modal-location {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.modal-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    color: var(--color-dark-text);
    overflow: hidden;
    background: var(--gradient-salad-raspberry);
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%); /* Zig-zag pattern */
    margin-top: -5rem;
    margin-bottom: -5rem;
}

@media screen and (max-width: 767px) {
    .cta-section {
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%); /* Adjust for smaller screens */
        margin-top: -3rem;
        margin-bottom: -3rem;
        padding: 6rem 0;
    }
}

.cta-section .cta-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-raspberry-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section .cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--color-dark-text);
}

.primary-cta-button {
    background-color: var(--color-dark-text);
    color: var(--color-white);
    border: 2px solid var(--color-dark-text);
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
}

.primary-cta-button:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-dark-text);
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Contact Section */
.contact-section {
    background-color: var(--color-white);
}

.contact-info-block {
    background-color: var(--color-light-text);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-info-block h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-dark-text);
}

.contact-info-block p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
    flex-wrap: ;
}

.contact-info-block p i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: var(--color-raspberry);
}

.contact-info-block p a {
    color: var(--color-dark-text);
}

.contact-info-block p a:hover {
    color: var(--color-raspberry);
}

.contact-form-block {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-form-block h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-dark-text);
}

.contact-form-block label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark-text);
    font-size: 0.95rem;
}

.contact-form-block input[type="text"],
.contact-form-block input[type="email"],
.contact-form-block input[type="tel"],
.contact-form-block textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-grey-subtle);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.contact-form-block input:focus,
.contact-form-block textarea:focus {
    border-color: var(--color-raspberry);
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.2);
    outline: none;
}

.contact-form-block textarea {
    resize: vertical;
}

.contact-form-block .button {
    margin-top: 1.5rem;
    background-color: var(--color-salad);
    border-color: var(--color-salad);
    color: var(--color-dark-text);
}

.contact-form-block .button:hover {
    background-color: var(--color-raspberry);
    border-color: var(--color-raspberry);
    color: var(--color-white);
}

.form-error {
    color: var(--color-raspberry);
    font-size: 0.85rem;
    margin-top: -0.75rem;
    margin-bottom: 1rem;
    display: block;
}

/* Footer Section */
.footer-section {
    background-color: var(--color-dark-text);
    color: var(--color-light-text);
    padding: 4rem 0;
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--color-grey-subtle);
}

.footer-col h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-yellow);
    margin-top: 8px;
    border-radius: 1.5px;
}

.footer-nav ul {
    list-style: none;
    margin-left: 0;
}

.footer-nav ul li a {
    color: var(--color-grey-subtle);
    font-size: 0.95rem;
    padding: 0.4rem 0;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: var(--color-yellow);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-grey-subtle);
}

.footer-contact p i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    color: var(--color-salad);
    flex-shrink: 0;
}

.footer-contact p a {
    color: var(--color-grey-subtle);
}

.footer-contact p a:hover {
    color: var(--color-yellow);
}

.social-icons a {
    font-size: 2.2rem;
    color: var(--color-grey-subtle);
    margin-right: 1rem;
    transition: color var(--transition-speed), transform var(--transition-speed);
}

.social-icons a:hover {
    color: var(--color-yellow);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.85rem;
    color: #fff !important;
    margin-top: 2rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .hero-heading {
        font-size: 3.5rem;
    }
    .lead-text {
        font-size: 1.3rem;
    }
    .section-padding {
        padding: 4rem 0;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .cta-section .cta-heading {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-heading {
        font-size: 2.8rem;
    }
    .lead-text {
        font-size: 1.1rem;
    }
    .ghost-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .header-nav {
        justify-content: center;
    }
    .header-nav .site-logo {
        text-align: center;
    }
    .header-nav.scrolled .site-logo img {
        height: 35px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .team-timeline-track::before {
        display: none; /* Hide horizontal line on small screens */
    }
    .team-member-node {
        margin: 0 1.5rem;
    }
    .cta-section {
        padding: 5rem 0;
    }
    .cta-section .cta-heading {
        font-size: 2.2rem;
    }
    .cta-section .cta-subtitle {
        font-size: 1rem;
    }
    .primary-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col h4::after {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-contact p, .footer-nav ul li a {
        justify-content: center;
    }
    .social-icons {
        text-align: center;
    }
    .cookie-banner-top {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .cookie-banner-top p {
        text-align: center;
    }
    .cookie-banner-top .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-heading {
        font-size: 2.2rem;
    }
    .lead-text {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .team-member-card, .service-card, .industry-badge-card, .contact-info-block, .contact-form-block {
        padding: 1.5rem;
    }
    .cta-section .cta-heading {
        font-size: 1.8rem;
    }
    .primary-cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    .footer-logo img {
        height: 40px;
    }
}
/* Styles for the privacy content wrapper */
.privacyNestZone {
    padding: 3rem 1.5rem; /* Padding for top/bottom and sides */
    max-width: 900px; /* Maximum width for readability */
    margin: 0 auto; /* Center the content block */
    background-color: var(--color-white); /* Ensures a clean background for content */
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: var(--shadow-light); /* Subtle shadow for depth */
    line-height: 1.7; /* Improved readability for long texts */
    color: var(--color-dark-text); /* Default text color */
}

/* Heading styles within privacyNestZone */
.privacyNestZone h1 {
    font-size: 2.2rem; /* Moderate size for main content heading */
    font-weight: 700; /* Bold for emphasis */
    margin-top: 2rem; /* Space above the heading */
    margin-bottom: 1rem; /* Space below the heading */
    color: var(--color-dark-text); /* Dark text color */
    line-height: 1.2; /* Tighter line height for headings */
}

.privacyNestZone h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    font-weight: 600; /* Semi-bold */
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    color: var(--color-dark-text);
    line-height: 1.3;
}

.privacyNestZone h3 {
    font-size: 1.5rem; /* Even smaller */
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark-text);
    line-height: 1.4;
}

.privacyNestZone h4 {
    font-size: 1.25rem; /* Standard paragraph size with more weight */
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--color-dark-text);
    line-height: 1.5;
}

.privacyNestZone h5 {
    font-size: 1.1rem; /* Smallest heading, often used for sub-sections */
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: var(--color-dark-text);
    line-height: 1.6;
}

/* Paragraph styles within privacyNestZone */
.privacyNestZone p {
    font-size: 1rem; /* Base font size for paragraphs */
    margin-bottom: 1rem; /* Space between paragraphs */
    color: #444; /* Slightly lighter than dark-text for body copy */
}

/* Unordered list styles within privacyNestZone */
.privacyNestZone ul {
    list-style: disc; /* Standard disc bullet points */
    margin-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Space after the list */
    padding-left: 0; /* No extra padding, margin-left handles indentation */
}

/* List item styles within privacyNestZone */
.privacyNestZone li {
    font-size: 1rem; /* Same font size as paragraphs */
    margin-bottom: 0.5rem; /* Space between list items */
    color: #444;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .privacyNestZone {
        padding: 2rem 1rem; /* Reduced padding on smaller screens */
    }

    .privacyNestZone h1 {
        font-size: 1.8rem;
    }

    .privacyNestZone h2 {
        font-size: 1.5rem;
    }

    .privacyNestZone h3 {
        font-size: 1.3rem;
    }

    .privacyNestZone h4 {
        font-size: 1.1rem;
    }

    .privacyNestZone h5 {
        font-size: 1rem;
    }

    .privacyNestZone p,
    .privacyNestZone li {
        font-size: 0.95rem; /* Slightly smaller text for better fit */
    }

    .privacyNestZone ul {
        margin-left: 1rem; /* Reduced indentation */
    }
}


.site-logo, .footer-logo{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}


.site-logo h2, .footer-logo h2{
    font-size: clamp(18px,2.5vw,22px);
    color: #fff;
    margin: 0;
}

@media(max-width: 992px) {
    .cell{
        margin-top: 20px;
    }

    .header-nav .main-menu {
        display: none; 
    }
}


