/*
Theme Name: Valunify
Author: Gemini AI for Valunify
Description: A modern, minimalist theme for a Dubai-based software trading company specializing in real estate BI solutions.
Version: 1.0
Requires at least: 5.0
Tested up to: 6.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valunify
*/

/*--------------------------------------------------------------
  Global Styles & Variables
--------------------------------------------------------------*/
:root {
    --color-primary: #0A2342; /* Deep Blue */
    --color-secondary: #D4AF37; /* Gold Accent */
    --color-accent: #E53935; /* Red for CTAs */
    --color-text: #333333;
    --color-white: #FFFFFF;
    --font-primary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    margin: 0;
    background-color: #fdfdfd;
    line-height: 1.8;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-weight: 600;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-primary);
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
  Header & Navigation
--------------------------------------------------------------*/
.site-header {
    background: var(--color-white);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .logo {
    display: inline-block;
    line-height: 0;
}

.site-logo {
    max-height: 45px;
    max-width: 200px;
    height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

#primary-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

#primary-menu li {
    margin-left: 30px;
    position: relative;
}

#primary-menu a {
    color: var(--color-primary);
    font-weight: 500;
    font-size: 16px;
}

#primary-menu .current-menu-item a, #primary-menu a:hover {
    color: var(--color-secondary);
}

/* Dropdown Menu */
#primary-menu ul {
    display: none;
    position: absolute;
    background: var(--color-white);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 10px 0;
    min-width: 240px;
    z-index: 1001;
    border-radius: 5px;
    list-style: none;
    top: 100%;
    left: 0;
}
#primary-menu li:hover > ul { display: block; }
#primary-menu ul a { padding: 10px 20px; display: block; white-space: nowrap; }

.header-actions { display: flex; align-items: center; }

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}
.btn-accent { background: var(--color-accent); color: var(--color-white); }
.btn-accent:hover { background: #d32f2f; color: var(--color-white); }
.header-actions .btn { margin-left: 20px; }

/*--------------------------------------------------------------
  Footer
--------------------------------------------------------------*/
.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.8);
    padding: 70px 0 30px 0;
    font-size: 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.footer-bottom { 
    text-align: center; 
    margin-top: 50px; 
    padding-top: 30px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
}
/*--------------------------------------------------------------
  Front Page
--------------------------------------------------------------*/
.hero {
    background: #0A2342 url('assets/images/dubai-skyline-minimal.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-white);
}

.hero h1 {
    color: var(--color-white);
    font-size: 52px;
    font-weight: 700;
}
.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 40px auto;
}

/*--------------------------------------------------------------
  Pages & Content
--------------------------------------------------------------*/
.page-header {
    padding: 150px 0 80px 0;
    text-align: center;
    background-color: #f4f6f9;
}
.page-header h1 { font-size: 42px; }

.page-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* For embedded tables in content */
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.content-table th, .content-table td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
.content-table th { background-color: #f8f9fa; font-weight: 600; }
.content-table tr:hover { background-color: #fbfbfb; }

/* For embedded pricing table in content */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
.pricing-plan {
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border: 2px solid #eee;
    transition: all 0.3s;
}
.pricing-plan.featured {
    border-color: var(--color-secondary);
    transform: scale(1.05);
}
.pricing-plan h3 { font-size: 22px; }
.pricing-plan .price { font-size: 42px; font-weight: 700; margin: 20px 0; }
.pricing-plan .price span { font-size: 16px; font-weight: 400; color: #777; }
.pricing-plan ul { list-style: none; padding: 0; margin-bottom: 30px; }
.pricing-plan ul li { margin-bottom: 15px; }

/* Blog */
.post { margin-bottom: 40px; }
.post h2 a { color: var(--color-primary); }

/*--------------------------------------------------------------
  Homepage Sections (NEW)
--------------------------------------------------------------*/

/* General Section Styling */
.section {
    padding: 80px 0;
}
.section-title p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: #666;
}

/* Hero Section Updates */
.hero {
    min-height: 90vh;
}
.hero h1 {
    font-size: 36px;
}
.hero p {
    font-size: 17px;
}
.hero .btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.hero .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}
.hero .btn {
    margin: 10px;
}

/* Social Proof Section */
.social-proof-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    text-align: center;
}
.social-proof-section .section-subtitle {
    margin: 0 0 20px 0;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}
.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.logos-container img {
    max-height: 35px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.logos-container img:hover {
    opacity: 1;
}

/* Value Proposition Section */
.value-proposition {
    background: var(--color-white);
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    text-align: center;
    padding: 30px;
}
.feature-icon {
    margin: 0 auto 20px auto;
    width: 60px;
    height: 60px;
    background: #eef2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.feature-icon svg {
    width: 28px;
    height: 28px;
}
.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Solutions Showcase Section */
.solutions-showcase {
    background-color: #f8f9fa;
}
.featured-solution {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}
.solution-image img {
    width: 100%;
    height: auto;
    display: block;
}
.solution-content {
    padding: 30px;
}
.solution-content .eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.solution-content h3 {
    font-size: 28px;
    margin-top: 5px;
}
.solution-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}
.solution-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}
.solution-content ul li svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    margin-right: 12px;
    flex-shrink: 0;
}

.other-solutions {
    text-align: center;
    margin-top: 60px;
}
.other-solutions h4 {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin-bottom: 30px;
}
.solution-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.solution-logo-item {
    text-align: center;
}
.solution-logo-item img {
    height: 40px;
    margin-bottom: 10px;
}
.solution-logo-item span {
    display: block;
    font-weight: 500;
    font-size: 14px;
}
.solution-logo-item a {
    font-weight: 600;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}
.cta-section h2 {
    color: var(--color-white);
    font-size: 32px;
}
.cta-section p {
    max-width: 600px;
    margin: 20px auto 30px auto;
    color: rgba(255,255,255,0.8);
}


/*--------------------------------------------------------------
  Responsive Media Queries (NEW)
--------------------------------------------------------------*/
@media (min-width: 768px) {
    .hero h1 {
        font-size: 52px;
    }
    .hero p {
        font-size: 18px;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .featured-solution {
        flex-direction: row;
        align-items: center;
    }
    .solution-image {
        flex: 1 1 50%;
    }
    .solution-content {
        flex: 1 1 50%;
        padding: 50px;
    }
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none; /* Hide hamburger on desktop */
    }

    .main-navigation,
    .header-actions {
        display: flex; /* Show menu and button on desktop */
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr); /* Restore 3-column layout on desktop */
    }
}

/*--------------------------------------------------------------
  BI Solutions Page
--------------------------------------------------------------*/
.solutions-showcase-page {
    margin-top: 40px;
}

/* Featured Solution Card (Valunify BI) */
.solution-feature-card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
}

.solution-feature-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.solution-feature-content {
    padding: 30px;
}

.solution-feature-content .eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-feature-content h3 {
    font-size: 28px;
    margin-top: 5px;
}

.solution-feature-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.solution-feature-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.solution-feature-content ul li svg {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    margin-right: 12px;
    flex-shrink: 0;
}

/* Partner Solutions Grid */
.solutions-grid-header {
    text-align: center;
    margin-bottom: 50px;
}
.solutions-grid-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.solutions-grid-header p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.solution-card {
    background: var(--color-white);
    border: 1px solid #eef2f7;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.solution-card-header {
    display: flex;
    flex-direction: column; /* This stacks items vertically */
    align-items: center;   /* This centers them horizontally */
    text-align: center;    /* Ensures the title text is centered if it wraps */
    gap: 15px;
    margin-bottom: 15px;
}

.solution-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

.solution-card-header h4 {
    margin: 0;
    font-size: 20px;
}

.solution-card-body {
    flex-grow: 1; /* Allows footer to stick to the bottom */
    font-size: 15px;
    color: #555;
}

.solution-tags {
    margin-top: 20px;
}

.tag-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-right: 5px;
    display: block;
    margin-bottom: 8px;
}

.tag {
    display: inline-block;
    background-color: #eef2f7;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 5px;
}

.solution-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}

.btn-learn-more {
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-learn-more:hover {
    color: var(--color-primary);
}


/* Responsive Adjustments for Solutions Page */
@media (min-width: 768px) {
    .solution-feature-card {
        flex-direction: row;
        align-items: center;
    }

    .solution-feature-image {
        flex: 1 1 50%;
    }
    .solution-feature-image img {
        height: 100%;
    }

    .solution-feature-content {
        flex: 1 1 50%;
        padding: 50px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*--------------------------------------------------------------
  Pricing Page & Beta Form
--------------------------------------------------------------*/
.price-placeholder {
    font-size: 16px;
    font-weight: 500;
    color: #777;
    margin: 25px 0;
    min-height: 48px; /* Keeps card height consistent */
}

/* Beta Access Form Container */
.beta-form-container {
    margin-top: 100px;
    padding: 60px 0;
    background-color: #f8f9fa;
    transition: opacity 0.5s ease-in-out, max-height 0.7s ease-in-out;
    overflow: hidden;
    opacity: 1;
    max-height: 2000px; /* High value to allow content */
}

.beta-form-container.hidden-form {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin-top: 0;
}

.beta-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--color-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: border-color 0.3s, box-shadow 0.3s;
    line-height: 1.6; /* Added for consistency */
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.form-submit {
    text-align: center;
}

.form-note {
    font-size: 13px;
    color: #888;
    margin-top: 15px;

  }



@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .beta-form {
        padding: 40px;
    }
    .checkbox-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/*--------------------------------------------------------------
  Contact Page Form
--------------------------------------------------------------*/
.contact-form-wrapper {
    max-width: 800px;
    margin: 60px auto 0 auto;
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}



@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .beta-form {
        padding: 40px;
    }
    .checkbox-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .form-submit .btn {
        max-width: 250px;
        width: 100%;
    }
}

/*--------------------------------------------------------------
  Mobile Navigation (NEW)
--------------------------------------------------------------*/
.nav-toggle {
    display: block; /* Show on mobile */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.nav-toggle span:not(:last-child) {
    margin-bottom: 5px;
}

/* Hide navigation and header button on mobile by default */
.main-navigation,
.header-actions {
    display: none;
}

/* Styles for when the mobile navigation is open */
.nav-open .main-navigation {
    display: block;
    position: absolute;
    top: 100%; /* Position below the header */
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.nav-open #primary-menu {
    display: block; /* Stack items vertically */
    text-align: center;
}

.nav-open #primary-menu li {
    margin: 0;
}

.nav-open #primary-menu a {
    display: block;
    padding: 15px 20px;
    font-size: 18px;
}

/* Animate hamburger icon to an "X" when open */
.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/*
  Desktop Navigation: Show the menu and hide the toggle
  We'll use 992px as the breakpoint.
*/
@media (min-width: 992px) {
    .nav-toggle {
        display: none; /* Hide hamburger on desktop */
    }

    .main-navigation,
    .header-actions {
        display: flex; /* Show menu and button on desktop */
    }
}

/*--------------------------------------------------------------
  Blog Index Page
--------------------------------------------------------------*/
.page-header .page-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 15px auto 0 auto;
    color: #666;
    font-weight: 400;
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.post-card {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.post-card-image-link {
    display: block;
    line-height: 0;
}

.post-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Ensures cards in a row have same height */
}

.post-card-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.post-card-title {
    font-size: 20px;
    margin: 0 0 10px 0;
}

.post-card-title a {
    color: var(--color-primary);
}

.post-card-title a:hover {
    color: var(--color-secondary);
}

.post-card-excerpt {
    color: #555;
    flex-grow: 1; /* Pushes the "Read More" button to the bottom */
}

.btn-read-more {
    margin-top: 20px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    align-self: flex-start; /* Aligns button to the left */
}

.btn-read-more:hover {
    color: var(--color-primary);
}


/* Responsive grid for tablets and desktops */
@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .posts-grid {
        /* You can change this to 3 if you have many posts */
        grid-template-columns: repeat(2, 1fr); 
    }
}

/*--------------------------------------------------------------
  About Us Page
--------------------------------------------------------------*/
.about-hero {
    position: relative;
    text-align: center;
    color: var(--color-white);
}

.about-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 35, 66, 0.6); /* --color-primary with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-hero h1 {
    color: var(--color-white);
    max-width: 800px;
    font-size: 32px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.about-mission, .about-values {
    background: var(--color-white);
}

.mission-grid, .values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.mission-image img, .values-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.mission-text .eyebrow, .values-text .eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.mission-text h2, .values-text h2 {
    font-size: 32px;
    margin-top: 0;
}

.values-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.values-text ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.values-text ul li::before {
    content: '✓';
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.stakeholder-focus {
    background-color: #f8f9fa; /* Light grey background */
}

/* Responsive adjustments for About Us page */
@media (min-width: 768px) {
    .about-hero h1 {
        font-size: 42px;
    }
    .mission-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    /* Reorder columns for the values section for visual variety */
    .values-grid .values-image {
        order: -1; /* Moves image to the left on desktop */
    }
}