.elementor-3312 .elementor-element.elementor-element-e5e1090{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}:root{--page-title-display:none;}/* Start custom CSS *//* --- Import Font (Ensure it's loaded) --- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/* --- Base Variables --- */
:root {
    --primary-text-color: #333;
    --heading-color: #1a1a1a;
    --light-bg-color: #fdfdfd;
    --accent-light-bg: #f7f7f7;
    --accent-dark-bg: #e9e9e9; /* Slightly darker accent */
    --border-color: #e0e0e0;
    --brand-color: #d6ae9b; /* UPDATED BRAND COLOR */
    --white-color: #fff;
    --black-color: #000;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-hover-color: rgba(0, 0, 0, 0.15);
    --base-font-size: 16px; /* Control global size */
    --font-family-base: 'Lato', sans-serif;
}

/* --- Global Styles --- */
* { /* Basic reset */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.7;
    color: var(--primary-text-color);
    background-color: var(--light-bg-color);
    font-size: var(--base-font-size);
    margin: 0;
}

p {
    margin-bottom: 1.2rem;
    font-weight: 300;
    text-align: left; /* Default */
}

em {
    font-style: italic;
    color: #555;
}

strong {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Custom Heading Styles --- */
.custom-h1, .custom-h2, .custom-h3, .custom-h4 {
    font-family: var(--font-family-base);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-weight: 700;
    text-align: left; /* Default alignment */
}
.custom-h1 { font-size: clamp(2rem, 5vw, 3rem); }
.custom-h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.custom-h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
.custom-h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #444;
    margin-bottom: 0.8rem;
}
.value-title { /* Specific heading inside value item */
    text-align: left;
    color: var(--brand-color);
    font-weight: 700;
}

/* --- Section Titles --- */
.section-title {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; /* Default left alignment */
    width: 50px;
    height: 3px;
    background-color: var(--brand-color); /* Use brand color */
    opacity: 0.8;
}

.section-subtitle {
    color: var(--brand-color);
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: left; /* Default */
}


/* ===== HERO SECTION STYLES ===== */
.about-hero-section {
    position: relative;
    height: 60vh;
    min-height: 350px;
    background-image: url('/wp-content/uploads/2025/11/Gemini_Generated_Image_gioas8gioas8gioa.webp'); /* The specified image */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative; /* Above overlay */
    z-index: 2;
    padding: 1rem;
    max-width: 800px;
}

.hero-title {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    text-align: center; /* Explicitly center */
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 0;
    text-align: center; /* Explicitly center */
}


/* --- Layout & Containers for Main Content --- */
.about-container.about-main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow: hidden; /* Contains floats/margins */
}

/* ****** Text Justification Rule for Paragraphs in main content ****** */
.about-container.about-main-content p {
  text-align: justify;
  /* Optional: Add hyphenation for better spacing, requires lang attribute in HTML */
  /* hyphens: auto; */
}

.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: center; /* Align items vertically */
}
.content-section:last-child {
    border-bottom: none;
}

/* Side-by-side layout adjustments */
.content-section .text-content,
.content-section .image-content {
    flex: 1;
    min-width: 300px;
}
.content-section.image-left .image-content { order: 1; }
.content-section.image-left .text-content { order: 2; }
.content-section.image-right .image-content { order: 2; }
.content-section.image-right .text-content { order: 1; }

.full-width-text .text-content,
.full-width { /* Utility class */
    flex-basis: 100%;
    width: 100%;
}

/* Container for centered text blocks */
.centered-text {
    max-width: 800px; /* Limits width */
    margin-left: auto; /* Centers the block */
    margin-right: auto; /* Centers the block */
    text-align: center; /* Centers inline/short elements within */
}

/* Center titles and subtitles within centered blocks */
.centered-text .section-title,
.centered-text .section-subtitle,
.dark-accent-title,
.dark-accent-subtitle {
    text-align: center;
}
/* Center the underlines for these titles */
.centered-text .section-title::after,
.dark-accent-title::after {
     left: 50%;
     transform: translateX(-50%);
}


.centered-image {
    text-align: center;
    margin: 1rem auto;
}
.extra-margin-top { margin-top: 2rem; }

.feature-image {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image.shadow-lift {
     box-shadow: 0 5px 15px var(--shadow-color);
}
.feature-image.shadow-lift:hover {
     box-shadow: 0 10px 25px var(--shadow-hover-color);
     transform: translateY(-5px);
}
.feature-image.small-shadow {
     box-shadow: 0 3px 10px var(--shadow-color);
     max-width: 600px; /* Max width on larger screens */
     width: 90%; /* Use a percentage on smaller screens initially */
     margin-left: auto;
     margin-right: auto;
}

.feature-image.landscape {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
}


/* Accent background sections */
.accent-bg {
    padding: 4rem 1rem;
    margin: 4rem -1rem; /* Extend slightly past container padding */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.accent-bg.light-accent { background-color: var(--accent-light-bg); }
.accent-bg.dark-accent { background-color: var(--accent-dark-bg); }

.accent-bg .text-content {
    max-width: 800px; /* Max width for text in accent */
    margin: 0 auto; /* Center text block in accent */
    flex-basis: 100%;
}
.dark-accent-title { color: #333; }
.dark-accent-subtitle { color: #555; }
.dark-accent-title::after { background-color: #666; } /* Underline color */


/* --- Specific Element Styles --- */
.styled-list {
    list-style: none;
    padding-left: 0;
    text-align: left; /* Lists remain left-aligned */
}
.styled-list li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: 0.8rem;
    font-weight: 300;
    text-align: left;
}
.styled-list li::before {
    content: '✓'; /* Checkmark icon */
    color: var(--brand-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.centered-list { /* Allows centering the list block */
    display: inline-block;
    text-align: left; /* Text inside stays left */
}

.highlight-text {
    font-size: 1.1em;
    color: var(--heading-color);
    margin-top: 1.5rem;
    /* Inherits text-align from container (.centered-text or default) */
}
/* Center short highlight text only if specifically needed */
 .centered-text .highlight-text {
     text-align: center;
 }

/* Ensure justification applies to these unless overridden */
.mission-statement,
.vision-statement {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    /* Inherits text-align: justify from main 'p' rule */
}


/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    width: 100%;
}

.value-item {
    background-color: var(--white-color);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; /* Container alignment */
}
.value-item p { /* Paragraphs inside justify */
    text-align: justify;
    font-size: 0.95em;
    color: #555;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    text-align: center;
}

.product-item img.interactive-image {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--white-color);
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1; /* Makes images square */
    object-fit: contain; /* Fit image within the square */
    width: 100%;
}

.product-title {
    font-size: 0.9em;
    font-weight: 400;
    color: #444;
    margin-top: 0.75rem;
    padding: 0 5px;
    line-height: 1.3;
    transition: color 0.3s ease;
    min-height: 2.6em; /* Reserve space for ~2 lines */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important; /* Explicitly remove underline */
    text-align: center; /* Keep product titles centered */
}


/* Interactive Effects */
.interactive-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px var(--shadow-hover-color);
}

.product-link:hover .interactive-image {
     transform: scale(1.05) translateY(-3px);
     box-shadow: 0 8px 15px var(--shadow-hover-color);
}

.product-link:hover .product-title {
     color: var(--brand-color);
}


/* --- Responsive Adjustments --- */

@media (max-width: 992px) { /* Larger Tablets */
    .about-hero-section {
        height: 50vh;
        background-attachment: scroll; /* Disable fixed on tablets */
    }
}

@media (max-width: 768px) { /* Tablets */
    /* Reduce general content section padding & gap */
    .content-section {
        padding: 2.5rem 0;
        gap: 2rem;
        flex-direction: column; /* Stack elements */
    }

    /* Reset order for stacked layout */
    .content-section.image-left .image-content,
    .content-section.image-left .text-content,
    .content-section.image-right .image-content,
    .content-section.image-right .text-content {
        order: initial;
    }

    .content-section .text-content,
    .content-section .image-content {
        min-width: 100%;
    }

    /* Adjust accent background for tablets */
    .accent-bg {
        /* Remove negative horizontal margins */
        margin: 2.5rem 0;
        padding: 2.5rem 1rem; /* Keep vertical padding, standard horizontal */
    }

    /* Reduce extra margin on the image in #real-people for tablet */
    #real-people .extra-margin-top {
        margin-top: 1.5rem;
    }
     /* Ensure centered text container still has some breathing room */
     .centered-text {
        padding: 0 0.5rem; /* Adjust padding on the container */
        max-width: 95%; /* Allow slightly wider block on tablet */
     }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

     .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1rem;
    }
}


@media (max-width: 480px) { /* Mobile Phones */
     .about-hero-section {
        height: 45vh;
        min-height: 300px;
    }
     .hero-title { font-size: 1.8rem; }
     .hero-subtitle { font-size: 1rem; }

    .about-container.about-main-content { padding: 0 0.75rem; }

    /* Further reduce content section padding & gap for small phones */
    .content-section {
        padding: 2rem 0;
        gap: 1.5rem;
    }

    /* Adjust accent background for mobile */
    .accent-bg {
        /* Remove negative horizontal margins */
        margin: 2rem 0;
        /* Reduce padding significantly */
        padding: 2rem 1rem;
    }

     /* Specific adjustments for #real-people section on MOBILE */
     #real-people.content-section {
        padding-top: 2.5rem; /* Example: Adjust if needed */
        padding-bottom: 2.5rem;
    }

    /* Further reduce the extra margin on the image for mobile */
    #real-people .extra-margin-top {
        margin-top: 1rem; /* Reduce space above image */
    }

    /* Ensure the small-shadow image doesn't exceed container width */
    .feature-image.small-shadow {
         max-width: calc(100% - 1.5rem); /* 100% minus approx container padding */
         width: auto; /* Let height adjust based on max-width */
         margin-left: auto;
         margin-right: auto;
    }

    /* Reset padding on centered-text container if parent padding is enough */
     .centered-text {
        padding: 0;
        max-width: 100%; /* Allow full width on mobile */
     }
    /* Justify paragraphs inside centered text */
    .centered-text p {
         text-align: justify;
    }
     /* Center short highlights */
    .highlight-text {
         text-align: center;
    }
     .mission-statement, .vision-statement {
         text-align: justify;
     }

    .values-grid { grid-template-columns: 1fr; }
     /* Revert value item paragraphs to left-align for readability */
     .value-item p {
        text-align: left;
    }

    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem;}
    .product-item img.interactive-image { padding: 10px; }
    .product-title { font-size: 0.85em; margin-top: 0.5rem; min-height: 2.4em;}

    .section-title::after { width: 40px; height: 2px; }
}/* End custom CSS */