html, body {
    height: 100%;
}
body .index-bg {
    background: url('../images/index-back.jpeg') center top/cover no-repeat;
    min-height: 100vh;
    width: 100%;
    position: relative;
}
body .index-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(50,65,117,0.32) 0%, rgba(255,255,255,1) 100%);
    z-index: 0;
}
body .index-bg > * {
    position: relative;
    z-index: 1;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-family: 'Lato', Arial, sans-serif;
    background: #FFF;
    color: #181818;
}
body h1 {
    font-family: 'Parkinsans', Arial, sans-serif;
    color: #181818;
}
body p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
header {
    background: linear-gradient(to bottom, rgba(192, 214, 240,0.95) 30%, rgba(192, 214, 240,0));
    padding: 0.8rem 0 2.5rem 0;
}


.logo {
    font-family: 'Parkinsans', Arial, sans-serif;
    font-size: 2.3rem;
    color: #324175;
    font-weight: 700;
    display: inline-block;
    margin-left: 2rem;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1024px;
    margin: 0 auto;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: #181818;
    font-family: 'Parkinsans', Arial, sans-serif;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.nav-links a.active, .nav-links a:hover {
    background: #84ABE1;
    color: #181818;
}
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.page-wrapper main {
    flex: 1;
}
main {
    flex: 1;
    max-width: 1000px;
    width: 100%;
    margin: 1rem auto;
    /* background: rgba(192, 214, 240,0.8); */
    border-radius: 16px;
    /* box-shadow: 0 4px 24px rgba(91,186,139,0.07); */
    /* padding: 2rem; */
}
.intro {
    text-align: center;
    margin-bottom: 2rem;
}
.intro h1 {
    font-family: 'Parkinsans', Arial, sans-serif;
    color: #324175;
    font-size: 5rem;
    margin: 1rem;
}
.intro p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.index-bg .intro {
    max-width: 480px;
    margin: 2rem auto 2rem auto;
    padding: 2rem 1.2rem;
    border-radius: 18px;
    /* box-shadow: 0 4px 24px rgba(168, 168, 168, 0.1);
    background: rgba(192, 214, 240, 0.7); */
    position: relative;
    overflow: hidden;
}
.cta-btn {
    background: #84ABE1;
    color: #fff;
    font-family: 'Parkinsans', Arial, sans-serif;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 24px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(91,186,139,0.10);
}
.cta-btn:hover {
    background: #324175;
}
.about-concept h2 {
    font-family: 'Parkinsans', Arial, sans-serif;
}
.about-concept{
    margin: 2rem 0 2rem 0;
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: linear-gradient(to top, rgba(192, 214, 240,0.8) 75%, rgba(192, 214, 240,0));
    color: #5C5350;
    font-size: 0.95rem;
    margin-top: 1rem;
    width: 100%;
}
.contact-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2rem;
    margin: 1rem auto;
    background: rgba(192, 214, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(91,186,139,0.10);
    
}
.contact-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(91,186,139,0.10);
    margin: 1rem;
    display: block;
}
.contact-text {
    padding: 0 1.5rem;
}
/* --- A. Layout using CSS Grid --- */

.contact-grid {
    display: grid;
    /* Two columns: All text content on the left, Image on the right */
    grid-template-columns: 2fr 1.5fr; /* Adjusted column ratio to give more space to text */
    gap: 50px; /* Reduced gap slightly */
    align-items: start;
}

/* Mobile Fallback: Stack columns vertically */
@media (max-width: 900px) { /* Adjust breakpoint if needed */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .image-container { /* Move image to top on smaller screens, or keep it last */
        order: -1; /* Place image above text content on mobile */
    }
}


/* --- C. Contact List Card Styling --- */

.contact-list {
    /* Changed from grid to flex for better card flow next to an image */
    display: flex; /* Use flexbox for the cards */
    flex-wrap: wrap; /* Allow cards to wrap to the next line */
    gap: 20px;
    margin-top: 20px;
    justify-content: flex-start; /* Align cards to the start */
}

.contact-lead {
    /* Adjusted flex-basis to control card width within the flex container */
    flex: 1 1 230px; /* Cards will try to be 280px wide but can grow/shrink */
    min-width: 200px; /* Ensure a minimum width */
    background-color: #ffffff;
    padding: 0rem 1rem 1rem 1rem;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #EFBA63; /* Accent color on the side */
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* ... (rest of the .contact-lead styling remains the same) ... */


/* --- D. Image and Office Styling --- */

.image-container {
    /* Ensure the image container fills its grid area */
    display: flex; 
    align-items: center; /* Center image vertically if it's shorter */
    justify-content: center; /* Center image horizontally */
}
.email-link {
    font-size: 1rem;
    color: #324175;
    text-decoration: underline;
}

/* ... (other CSS for h1, h2, intro-text, other-info, etc. remains unchanged) ... */

.contact-form {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    flex-wrap: nowrap;
    flex: 2;
    margin: 0 auto;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Parkinsans', Arial, sans-serif;
    font-weight: 700;
}
.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #324175;
    border-radius: 6px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    background: #fff;
    min-width: 120px;
    max-width: 400px;
    
}

.contact-form button {
    align-self: flex-start;
    margin-left: 0;
}

.about-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.login-section {
    max-width: 350px;
    margin: 4rem auto;
    background: rgba(192, 214, 240, 0.9);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(91,186,139,0.10);
    padding: 2rem 1.5rem;
    text-align: center;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}
.login-form label {
    text-align: left;
    font-family: 'Parkinsans', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.login-form input {
    padding: 0.5rem;
    border: 1px solid #324175;
    border-radius: 6px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    background: #fff;
    margin-bottom: 0.5rem;
}
.login-form button {
    background: #84ABE1;
    color: #fff;
    font-family: 'Parkinsans', Arial, sans-serif;
    font-weight: 700;
    padding: 0.6rem 0;
    border: none;
    border-radius: 24px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}
.login-form button:hover {
    background: #324175;
}

.team-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 360px;
}
.team-member img {
    width: 260px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(91,186,139,0.10);
    margin-bottom: 0.7rem;
    background: #eaeaea;
}
.team-name {
    font-family: 'Parkinsans', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
    text-align: center;
}
.team-role {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1rem;
    color: #181818;
    font-weight: 500;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}
.team-role p {
    margin: 0;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.products-section {
    margin: 0rem auto;
    padding: 1rem;
}
.products-content {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}
.products-info {
    flex: 1;
}
.products-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(91,186,139,0.10);
    margin-top: 1rem;
    display: block;
}

.about-section h1 {
    font-family: 'Parkinsans', Arial, sans-serif;
    color: #324175;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.about-section p {
    font-size: 1.15rem;
    color: #181818;
    margin-bottom: 1.5rem;
}
.about-section ul {
    margin-bottom: 1.5rem;
}
.about-section li {
    font-size: 1.05rem;
    color: #324175;
    margin-bottom: 0.5rem;
}
.about-section .cta-btn:hover {
    background: #324175;
    color: #fff;
}

/* WRAPPER: Aligns Name and Icon side-by-side */
.name-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* ICON ADJUSTMENT:
   1. Use 'display: flex' to handle the SVG container.
   2. Use 'transform: translateY(4px)' to physically lower the icon 
      so it aligns better visually with the text baseline.
*/
.name-wrapper .linkedin-link-inverted {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    transform: translateY(4px); /* Lowers the icon for better alignment */
}

/* Ensure the team name doesn't push the icon away */
.name-wrapper .team-name {
    margin-bottom: 0;
}


