:root {
  --bg: #edf2f4;
  --text: #0c0c0c;
  --muted: #565252;
  --accent: #f17900;
  --accent-dark: #c57729;
  --card: #fbf7f3;
  --border: rgba(153, 149, 149, 0.5);
  --white: #fff;
  --footer: #081422;
  --gray-line: #bdb1b1;
  --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Barlow', 'Asap', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
    width: min(1200px, 94%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000; /* High z-index to sit above slider */
    background: var(--bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    overflow: visible !important;
}

.slider-mask {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1; /* Low z-index so the header stays on top */
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out; 
  width: 100%;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    overflow: visible !important; /* CRITICAL */
}

.logo img {
  height: 48px;
}

.nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    margin-left: auto;
    overflow: visible !important; /* CRITICAL */
}

.nav a {
  position: relative;
  margin-top: 5px;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
}

.nav-item {
    position: relative;
    margin-top: 5px; /* This is the anchor for the dropdown */
}

.has-dropdown .dropdown {
    /* Layout: Vertical Stack */
    display: none; 
    flex-direction: column; /* Fixes the "jumbled text" issue */
    gap: 0.5rem;
    
    /* Position: Below the link */
    position: absolute;
    top: 100%; 
    left: 0;
    z-index: 9999; /* Super high to sit on top of everything */
    
    /* Visuals */
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    min-width: 220px; /* Wider so text fits */
    border: 1px solid rgba(0,0,0,0.05);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    display: flex;
}

.has-dropdown .dropdown a {
  color: var(--text);
  padding: 0.3rem 0;
  font-weight: 600;
}

.call-btn {
  white-space: nowrap;
}
.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Asap', sans-serif;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #e7ecef;
  border-color: #fff9f9;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #2c1804;
  color: #fff2f2;
  border-color: #f8ebeb;
}

.btn-secondary:hover {
  background: #1f1103;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: #959292;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #000;
}

.products {
  padding: 4rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.product-card {
  background: #f7f7f7;
  border: 0.5px solid rgba(0, 0, 0, 0.5);
  border-radius: 35px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card .product-image img {
  width: 400px;
  height: 250px;
  
  object-fit: cover;
}

.product-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-family: 'Asap', sans-serif;
}

.product-body p {
  margin: 0 0 0.75rem;
  color: #000;
  font-weight: 300;
}

.product-showcase {
  min-width: 100%;
  flex-shrink: 0; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smooth sliding animation */
    width: 100%;
}

.card {
    /* The specific warm-grey color from the image */
    background-color: #ececec; 
    
    /* Thin darker border */
    border: 1px solid #dcdcdc; 
    
    /* Soft shadow to create the depth seen in the image */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    
    border-radius: 20px;
    width: 180px;
    height: 120px; /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.number {
    /* The specific muted orange/bronze color */
    color: #e08836; 
    font-size: 28px;
    font-weight: 800; /* Extra Bold */
    margin-bottom: 8px;
}

.text {
    /* The slate blue-grey text color */
    color: #5d6d7e; 
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-media img {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.about {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-media img {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.about-content h2 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.about-content p {
  font-size: 1rem;
  color: #1c1b1b;
}

.about-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.section-title {
  text-align: center;
  font-size: clamp(2.3rem, 3.2vw, 2.8rem);
  margin: 0 0 2rem;
  margin-bottom: -10px;
}

.container {
    overflow: hidden; 
    width: 100%;
    position: relative;
}

/* Force each product to take up 100% of the container width */
.product-showcase {
    min-width: 100%; 
    flex-shrink: 0;
    
    /* Keep your existing layout styles here (display: flex, etc.) */
    display: flex; 
    align-items: center; 
    justify-content: space-between;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #284b63;
  font-weight: 700;
}

.link-arrow::after {
  content: '↗';
  font-size: 0.9rem;
}

/* Ensure the main section can hold the absolute buttons */
.main-display {
    position: relative;
    padding: 4rem 0;
    background-color: #f0f2f5;
    /* Ensure no horizontal scrollbar appears on the main page */
    overflow: hidden; 
    margin-top: -50px;
}

/* 1. The Mask (Window) */
.slider-mask {
    /* This cuts off the next/previous slides cleanly */
    overflow: hidden; 
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* 2. The Track (Flex Container) */
.slider-track {
    display: flex;
    /* IMPORTANT: width must be 100% to fill the mask */
    width: 100%; 
    transition: transform 0.5s ease-in-out;
}

/* 3. The Slide (Individual Product) */
.product-showcase {
    /* CRITICAL: Force every slide to be exactly the width of the screen */
    min-width: 100%; 
    width: 100%; 
    flex-shrink: 0; /* Prevents it from shrinking */
    
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%; /* Flexible gap */
    padding: 0 10%; /* Safety padding on left/right so text isn't on edge */
    box-sizing: border-box; /* Includes padding in width calculation */
}

/* 4. Text Content Area */
.text-content {
    flex: 1;
    max-width: 500px; /* Limits text width so it wraps nicely */
    z-index: 2; /* Ensures text sits on top */
}

.title {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
    margin-left: -100px;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap; /* Keeps title on one line if possible */
}

.highlight {
    color: #d9822b;
}

.description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    /* Fix for text cutting off: */
    width: 100%;
    word-wrap: break-word;
}

/* 5. Image Area */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    /* Responsive image sizing */
    width: 100%;
    max-width: 500px; 
    margin-right: -80px;
    height: auto;
    object-fit: contain;
}

/* 6. Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #aaa;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
}

.nav-arrow:hover {
    color: #d9822b;
}

.nav-arrow.left { left: 10px; }
.nav-arrow.right { right: 10px; }

/* RESPONSIVE (Mobile) */
@media (max-width: 900px) {
    .product-showcase {
        flex-direction: column-reverse; /* Image top, text bottom */
        padding: 2rem;
        text-align: center;
    }

    .title {
        font-size: 2rem;
        white-space: normal; /* Allow title wrap on mobile */
    }

    .text-content {
        max-width: 100%;
    }
}

/* --- Separator Line --- */
.separator {
    border: 0;
    height: 1px;
    background-color: #403d3d;
    margin: 40px 0;
    width: 100%;
    margin-top: -50px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.5rem 0 1rem;
  margin-top: -100px;
}

.rating .stars span {
  color: #565252;
  font-size: 1.4rem;
}

.rating-value {
  font-weight: 600;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-visual {
  position: relative;
  margin-top: 1rem;
}

.product-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 1.5rem;
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

.reviews-section {
    max-width: 1000px;
    width: 100%;
    margin-left: 250px;
    margin-top: 40px;
    text-align: center;
}

.section-about {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f7f4f4;
    margin-bottom: 10px;
    margin-top: -20px;
}

/* Overall Rating Styling */
.overall-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    margin-top: -40px;
}

.stars {
    color: #ff9900; /* Orange color */
    font-size: 1.5rem;
}

.star-half, .star-grey {
    color: #555; /* Dark grey for half/empty stars in header */
}

.rating-text {
    font-size: 1.2rem;
    color: #333;
}

/* Grid Layout */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 30px;
    text-align: left;
}

/* Card Styling */
.review-card {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card-stars {
    color: #ff9900;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.star-grey {
    color: #ccc; /* Light grey for empty stars inside cards */
}

.review-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 50px; /* Keeps cards aligned if text length varies */
}

/* User Profile Section */
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    /* Color is set inline in HTML to match the specific tan/orange tones */
}

.user-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
}

.date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
}

/* Responsive: 1 Column on mobile */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.contact {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap; /* Makes it responsive on mobile */
    justify-content: center;
}

/* --- LEFT SIDE: CONTACT FORM --- */
.contact-card {
    background-color: #fff9f5; /* Light beige background */
    padding: 40px;
    border-radius: 40px;
    border: 1px solid #e0e0e0;
    width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-card h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
}

.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 20px;
}

.input-group.full-width {
    width: 100%;
}

label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.required {
    color: #d9534f;
    margin-left: 2px;
}

/* Input Fields Styling */
input, textarea {
    background-color: #ddd; /* Light gray input background */
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: 0.3s;
}

input:focus, textarea:focus {
    background-color: #ccc;
}

textarea {
    resize: none;
}

/* Submit Button */
.submit-btn {
    display: block;
    margin: 0 auto;
    background-color: #d9822b; /* Orange color */
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #bf7022;
}

/* --- RIGHT SIDE: MAP --- */
.map-section {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin-top: 40px;
    gap: 20px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.direction-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9822b;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    gap: 10px;
    transition: background 0.3s;
}

.direction-btn:hover {
    background-color: #bf7022;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .contact-card, .map-section {
        width: 100%;
    }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  color: #e40808;
}

.site-footer {
  background: var(--footer);
  color: #959292;
  padding: 2.5rem 0 1.5rem;
  margin-top: 20px;
}

.about-section {
    background-image: linear-gradient(to bottom, #F17900, #C57729);
    padding: 20px 80px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh; 
    justify-content: center;
}

.section-review {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
}

.content-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns items to the top */
    gap: 60px;
    max-width: 1200px;
}

/* --- Image Styling --- */
.image-wrapper {
    position: relative;
    flex: 1; /* Takes up left half */
    padding-left: 15px; /* Space for the frame offset */
    padding-bottom: 15px;
}

.main-image {
    width: 80%;
    border-radius: 2px;
    position: relative;
    z-index: 2; /* Sits on top of the frame */
    display: block;
}

/* The decorative outline frame */
.image-frame {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 80%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.4); /* Semi-transparent white border */
    border-radius: 15px;
    z-index: 1; /* Sits behind the image */
}

/* --- Text Styling --- */
.text-content {
    flex: 1.2; /* Takes up slightly more space than image */
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify; /* Aligns text neatly on both sides */
    margin-bottom: 30px;
    font-weight: 400;
    margin-left: -100px;
}

/* --- Button and Rating --- */
.action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 100px;
}

.contact-btn {
    text-decoration: none;
    color: white;
    background-color: transparent;
    border: 2px solid white;
    padding: 10px 30px;
    border-radius: 15px; /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    margin-left: -100px;
    margin-top: -100px;
}

.contact-btn:hover {
    background-color: white;
    color: #d68438;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star {
    color: white;
    font-size: 1.8rem;
}

.star.dark {
    color: #595959; /* Dark grey for the unfilled/last star */
}

.rating-score {
    color: #222; /* Dark text for the number */
    font-size: 1.5rem;
    margin-left: 10px;
    font-weight: 400;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {
    .content-container {
        flex-direction: column;
        align-items: center;
    }
    
    .about-section {
        padding: 40px 20px;
    }
    
    .image-wrapper, .text-content {
        width: 100%;
    }
}


.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer-info h3,
.footer-nav h3,
.footer-follow h3 {
  color: #fff;
  margin: 0 0 0.75rem;
}

.footer-info p {
  margin: 0.35rem 0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-info a {
  color: inherit;
}

.footer-nav a {
  display: block;
  margin: 0.25rem 0;
}

.footer-follow .socials {
  display: flex;
  gap: 0.65rem;
}

.social {
    width: 34px;
  height: 32px;
  border-radius: 50%;
  background: #bdb1b1;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;

}
.footer-bottom {
  border-top: 1px solid rgba(189, 177, 177, 0.5);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  color: #d9c1c1;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .product-card.wide {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;
  }

  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    inset: 100% 1rem auto;
    background: var(--bg);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

.container {
    max-width: 900px;
    width: 100%;
}

/* --- Typography Helpers --- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }


.main-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #111;
    text-align: center;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #111;
}

/* --- Proprietor Card --- */
.proprietor-card {
    border: 1px solid #767575;
    border-radius: 15px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 90px;
    flex-wrap: wrap; /* Responsive wrapping */
    gap: 20px;
}

.card-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    background-color: #3b82f6; /* Blue Color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info .designation {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
}

.card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.exp-badge {
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    color: #888;
    font-size: 1.2rem;
    transition: color 0.3s;
    background-color: #ddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: #3b82f6;
    background-color: #eee;
}

/* --- Content Sections --- */
.content-section {
    margin-bottom: 50px;
    margin-top: -20px;
}

.split-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
}

.text-column {
    flex: 1;
}

.text-column p {
    color: #444;
    text-align: justify;
}

.list-column {
    flex: 1;
}

.list-column ul {
    list-style: disc; /* Bullet points */
    padding-left: 20px;
    color: #333;
}

.list-column li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.full-width-text, .content-section p {
    color: #444;
    font-size: 0.95rem;
    text-align: justify;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .proprietor-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .card-left {
        flex-direction: column;
    }
    
    .split-layout {
        flex-direction: column;
        gap: 20px;
    }
}