:root {
    --white: #ffffff;
    --logo-light-blue: #4fb6e7;
    --light-blue: #d8e9f5;
    --dark-blue: #002d5b;
    --green: #009c5b;
    --text-dark: #333; /* Added for better contrast on light backgrounds */
    --text-light: #f8f9fa; /* Added for text on dark backgrounds */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

body {
    font-family: 'APTOS', Arial, sans-serif;
    color: var(--text-dark); /* Changed default text color */
    background-color: var(--white);
    line-height: 1.7; /* Slightly increased line height */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--logo-light-blue); /* Changed default link color */
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue); /* Darker hover for links */
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent bottom space */
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--logo-light-blue);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600; /* Slightly bolder */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Added for hover effect */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 45, 91, 0.1); /* Subtle shadow */
}

.btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 45, 91, 0.2); /* Enhanced shadow on hover */
}

/* Secondary Button Style */
.btn-secondary {
    background-color: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}

.btn-secondary:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}


.section-title {
    font-size: 2.8rem; /* Slightly larger */
    margin-bottom: 2rem; /* Increased margin */
    position: relative;
    color: var(--dark-blue);
    text-align: center; /* Center align section titles */
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--logo-light-blue);
    margin: 15px auto 0; /* Center align the underline */
}

/* Header Styles */
.main-header {
    background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* Softer shadow */
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 6px 0; /* Adjusted padding to compensate for larger logo */
    transition: padding 0.3s ease;
}

/* Add class on scroll */
.main-header.scrolled {
    padding: 6px 0; /* Keep padding same as default header */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 93%; /* Set header content width to 93% */
    max-width: none; /* Override container max-width */
    margin: 0 auto; /* Center the container */
    padding-left: 15px; /* Retain internal padding */
    padding-right: 15px; /* Retain internal padding */
}

#main-content {
    padding-top: 80px; /* Push content below fixed header */
}

.logo-container .logo {
    height: 78px; /* Made logo bigger */
    width: auto;
    transition: height 0.3s ease;
    /* margin: 0 auto; Removed to allow left alignment */
}

/* Removed .main-header.scrolled .logo-container .logo to keep logo size constant */

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
}

.logo-title {
    color: var(--dark-blue); /* Changed to dark blue */
    font-size: 0.85rem; /* Adjusted size */
    margin-top: -15px; /* Corrected margin-top */
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2; /* Added line-height */
    padding-left: 108px; /* Corrected left padding */
}

.main-nav {
    display: flex; /* For aligning nav ul and social links */
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin-right: auto; /* Pushes social links to the right */
}

.main-nav ul li {
    margin-left: 35px; /* Increased spacing */
}

.main-nav ul li a {
    font-weight: 600; /* Bolder nav links */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 5px;
}

.main-nav ul li a i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.main-nav ul li a i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Underline effect for nav links */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--logo-light-blue);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.main-nav ul li.dropdown {
    position: relative;
}

.main-nav ul li.dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 400px; /* Adjust as needed */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%; /* Position below the Solutions link */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
    border-radius: 4px;
}

.main-nav ul li.dropdown:hover .dropdown-content {
    display: flex; /* Use flex to arrange categories side-by-side */
    gap: 20px; /* Space between categories */
    padding: 20px;
}

.dropdown-category {
    display: flex;
    flex-direction: column;
    min-width: 200px; /* Ensure categories have enough width */
}

.dropdown-category h6 {
    font-weight: bold;
    color: var(--dark-blue);
    padding: 8px 16px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-transform: none; /* Override main nav uppercase */
    letter-spacing: normal; /* Override main nav letter-spacing */
    font-weight: normal; /* Override main nav font-weight */
}

.dropdown-content a::after {
    display: none; /* No underline for dropdown items */
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--logo-light-blue);
}


/* Mobile menu */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around; /* Adjusted */
    width: 30px;
    height: 25px; /* Adjusted */
    background: transparent;
    border: none;
    z-index: 1001; /* Above header content */
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-blue);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Added easing */
    transform-origin: center; /* Ensure rotation is centered */
}

/* Hamburger animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg); /* Adjusted transform */
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0); /* Scale down */
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); /* Adjusted transform */
}


/* Scroll Animation Base Styles */
.solution-card, .approach-card, .info-item, .about-text, .about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Scroll Animation Active State */
.solution-card.animate, 
.approach-card.animate, 
.info-item.animate,
.about-text.animate,
.about-image.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.solutions-grid .solution-card:nth-child(1), .approach-grid .approach-card:nth-child(1) { transition-delay: 0.1s; }
.solutions-grid .solution-card:nth-child(2), .approach-grid .approach-card:nth-child(2) { transition-delay: 0.2s; }
.solutions-grid .solution-card:nth-child(3), .approach-grid .approach-card:nth-child(3) { transition-delay: 0.3s; }
.solutions-grid .solution-card:nth-child(4), .approach-grid .approach-card:nth-child(4) { transition-delay: 0.4s; }

/* Back to top button */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--logo-light-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--dark-blue);
}

#back-to-top svg {
    width: 24px;
    height: 24px;
}


/* Form feedback styles */
.form-feedback {
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.form-feedback.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-feedback.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


@media (max-width: 992px) {
    .section-title {
        font-size: 2.4rem; /* Adjust for medium screens */
    }
    /* Styles from about.php */
    .about-content-section .container {
        grid-template-columns: 1fr;
        gap: 30px; /* Reduced gap */
    }
    
    .about-text {
        padding-right: 0;
        order: 2; /* Text below image on mobile */
    }
    .about-image {
        order: 1;
    }
    
    .about-image .image-placeholder {
        height: 300px;
    }

    /* Styles from contact.php */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* Adjusted gap */
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 30px; /* Reduced margin */
    }
}


@media (max-width: 768px) {
    body {
        line-height: 1.6;
    }
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 45, 91, 0.98);
        backdrop-filter: blur(5px); /* Add a blur effect */
        padding-top: 80px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 40px;
        align-items: center;
        height: auto;
        margin-right: 0;
    }
    
    .main-nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        font-size: 1.2rem;
        color: var(--white);
        padding: 10px 0;
        display: block;
    }
    .main-nav ul li a::after {
        display: none;
    }
    .main-nav ul li a:hover {
        color: var(--logo-light-blue);
    }
    .main-nav ul li.dropdown > a::after {
        content: '\f078'; /* Font Awesome caret-down */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-left: 5px;
    }
    .main-nav.active ul li a {
        color: #4fb6e7;
    }
    .main-nav.active ul li a:hover {
        color: var(--white);
    }
    
    .mobile-menu-btn {
        display: flex;
        position: relative; /* Needed for z-index */
        z-index: 1001; /* Ensure button is above nav */
    }
    
    /* Change hamburger color when menu is active */
    .mobile-menu-btn.active span {
        background-color: var(--white); 
    }
    
    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 25px; /* Smaller padding */
    }

    /* Styles from about.php */
    .about-hero {
        padding: 150px 0 80px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-content-section, .team-section {
        padding: 60px 0;
    }

    /* Styles from contact.php */
    .contact-hero {
        padding: 150px 0 80px;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .map-section {
        padding-bottom: 60px;
    }
    
    .map-placeholder {
        height: 300px;
    }

    /* Styles from index.php */
    .hero {
        min-height: 45vh; /* Reduced min-height for mobile */
        display: flex; /* Added to help center content vertically if needed */
        align-items: center; /* Vertically center hero content */
        padding-bottom: 40px; /*Removed as hero-content has bottom padding */
    }
    .hero h1 {
        font-size: 2rem; /* Reduced h1 font size for mobile */
    }
    
    .hero p {
        font-size: 1rem; /* Adjusted p font size for mobile */
        margin-bottom: 20px; /* Adjusted margin for button spacing */
    }

    .hero-content { /* Mobile specific adjustments for hero-content */
       padding-top: 80px; /* Adjust top padding if main-content padding is too much */
       padding-bottom: 30px; /* Ensure space for the button */
    }
    
    .about-section, .solutions-section {
        padding: 60px 0;
    }

}

/* Styles from about.php */
.about-hero {
    background: linear-gradient(rgba(0, 45, 91, 0.85), rgba(0, 45, 91, 0.85)), url('images/background-3d.jpg'); /* Darker gradient */
    background-size: cover;
    background-position: center center; /* Ensure center */
    background-attachment: fixed; /* Optional: Parallax effect */
    color: var(--white);
    padding: 180px 0 120px; /* Increased padding */
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem; /* Larger */
    margin-bottom: 20px;
    font-weight: 700; /* Bolder */
    color: var(--white) !important;
}

.about-hero p {
    font-size: 1.3rem; /* Larger */
    max-width: 750px; /* Wider */
    margin: 0 auto;
    opacity: 0.9; /* Slightly transparent */
}

.about-content-section {
    padding: 100px 0;
    background-color: var(--white);
    display: block;
}

.about-content-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Increased gap */
    align-items: center;
}

.about-text {
    padding-right: 30px;
}

.about-text p {
    margin-bottom: 25px; /* Increased spacing */
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-image .image-placeholder {
    height: 450px; /* Taller */
    background-color: var(--light-blue);
    border-radius: 12px; /* More rounded */
    box-shadow: 0 15px 40px rgba(0, 45, 91, 0.15); /* Enhanced shadow */
    /* Placeholder for actual image */
    background-image: url('images/team-placeholder.jpg'); /* Example image */
    background-size: cover;
    background-position: center;
}

.team-section { /* Renamed from team-section to approach-section for consistency */
    padding: 100px 0; /* Increased padding */
    background-color: var(--light-blue);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* Slightly larger min */
    gap: 40px; /* Increased gap */
    margin-top: 60px; /* Increased margin */
}

.approach-card {
    background-color: var(--white);
    padding: 35px; /* Increased padding */
    border-radius: 12px; /* More rounded */
    box-shadow: 0 8px 25px rgba(0, 45, 91, 0.1); /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--logo-light-blue); /* Accent border */
}

.approach-card:hover {
    transform: translateY(-10px) scale(1.02); /* Scale up slightly */
    box-shadow: 0 15px 35px rgba(0, 45, 91, 0.15); /* Enhanced shadow */
}

.approach-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.4rem; /* Larger */
}

.approach-card p {
    color: var(--text-dark);
}


/* Styles from contact.php */
.contact-hero {
    background: linear-gradient(rgba(0, 45, 91, 0.85), rgba(0, 45, 91, 0.85)), url('images/contact-hero.jpg'); /* Different image */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Optional: Parallax effect */
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 750px; /* Wider */
    margin: 0 auto;
    opacity: 0.9; /* Slightly transparent */
}

.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    justify-content: space-around;
}

.contact-info {
    text-align: center;
}

.info-item {
    margin-bottom: 0;
    position: relative;
    padding-left: 0;
    margin-right: 20px;
}

.contact-section .container {
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
}

.info-item i { /* Add icons */
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.5rem;
    color: var(--logo-light-blue);
}


.info-item h3 {
    color: var(--dark-blue); /* Darker heading */
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}
.info-item p a {
    color: var(--logo-light-blue);
}
.info-item p a:hover {
    text-decoration: underline;
}

.contact-form .form-group {
    margin-bottom: 25px; /* Increased spacing */
}

.contact-form label { /* Add labels for accessibility */
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
}

.contact-form input,
.contact-form textarea {
    width: 70%;
    padding: 15px 18px; /* Increased padding */
    border: 1px solid #ccc; /* Slightly darker border */
    border-radius: 6px; /* More rounded */
    font-family: 'APTOS', Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--logo-light-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 182, 231, 0.3); /* Focus ring */
}

.contact-form textarea {
    height: 160px; /* Taller */
    resize: vertical;
}

.contact-form .btn {
    width: 100%; /* Full width button */
    padding: 15px 30px;
    font-size: 1.1rem;
}

.map-section {
    padding: 100px 0; /* Added top padding */
    background-color: var(--light-blue);
}

.map-placeholder {
    margin-top: 0; /* Removed top margin */
    height: 450px; /* Taller map */
    background-color: #e0e0e0; /* Lighter placeholder */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 45, 91, 0.1);
}

.map-frame { /* Style for actual map iframe */
    width: 100%;
    height: 100%;
    border: none; /* Remove iframe border */
}

/* Styles from index.php */
.hero {
    position: relative;
    height: 37.5vh; /* Original 50vh, effectively reducing bottom space */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden; /* Keep hidden */
    /* Fallback background since 3D canvas is disabled */
    background: linear-gradient(rgba(0, 45, 91, 0.7), rgba(0, 45, 91, 0.9)), url('images/hero-background.jpg'); /* Add a fallback image if available */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Optional: Parallax effect */
}

/* #canvas3d { - Removed as it's not functional without three.js */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* z-index: 0; */
    /* background: linear-gradient(to bottom, var(--dark-blue), #001f3f); */
/* } */

.hero-content {
    max-width: 970px; /* Increased max-width for wider paragraph */
    padding: 80px 20px 0; /* Added 80px top padding, kept 20px horizontal */
    z-index: 1; /* Above background */
    position: relative; /* Ensure z-index works */
    /* animation: fadeInHeroContent 1s ease-out 0.5s forwards; */ /* Removed animation */
    /* opacity: 0; */ /* Removed initial opacity */
}

/* @keyframes fadeInHeroContent { */ /* Removed animation */
    /* to { opacity: 1; } */
/* } */

.hero h1 {
    font-size: 4.5rem; /* Larger */
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6); /* Stronger shadow */
    font-weight: 700; /* Bolder */
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem; /* Adjusted size */
    margin-bottom: 40px; /* More space */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    opacity: 0.9;
    /* Removed duplicated font-weight and text-shadow from here */
}

.hero .btn {
    padding: 15px 40px; /* Larger button */
    font-size: 1.1rem;
}

.about-section { /* Homepage about section */
    padding: 100px 0;
    background-color: var(--white);
}

.about-content { /* Homepage about content */
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.15rem; /* Slightly larger */
    color: var(--text-dark);
}

.solutions-section {
    padding: 50px 0 100px; /* Top padding 50px (halved from 100px), bottom 100px */
    background-color: var(--light-blue);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.solution-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 45, 91, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--logo-light-blue); /* Top border accent */
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 45, 91, 0.15); /* Enhanced shadow */
}

.solution-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.4rem; /* Larger */
}

.solution-card p {
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

/*--------------------------------------------------------------
# WhatsApp Button
--------------------------------------------------------------*/
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  width: 60px; /* Increased size */
  height: 60px; /* Increased size */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

#whatsapp-button img { /* Changed from svg to img */
  width: 36px; /* Adjusted icon size */
  height: 36px; /* Adjusted icon size */
}

#whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Solutions Page Specific Styles */

.solutions-hero {
    background: linear-gradient(rgba(0, 45, 91, 0.85), rgba(0, 45, 91, 0.85)), url('images/solutions-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
}

.solutions-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.solutions-hero p {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
}

.solutions-content-section {
    padding: 100px 0;
    background-color: var(--white);
}

.solutions-content-section .container {
    max-width: 900px;
}

.solutions-category {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.solution-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 45, 91, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 45, 91, 0.15);
}

.solution-item h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.8rem;
}

.solution-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.solution-item#succession-planning img {
    display: inline;
}

.solutions-content-section {
    padding: 80px 0;
}

.solutions-content-section .container {
    max-width: 1000px;
}

.solutions-category {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}


@media (max-width: 468px) {
    .hero h1 {
        font-size: 2rem; /* Reduced h1 font size for mobile */
    }
    
    .hero p {
        font-size: 1rem; /* Adjusted p font size for mobile */
        margin-bottom: 20px; /* Adjusted margin for button spacing */
    }

    .hero-content { /* Mobile specific adjustments for hero-content */
       padding-top: 80px; /* Adjust top padding if main-content padding is too much */
       padding-bottom: 30px; /* Ensure space for the button */
    }
}
