/* General Styling */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2c3e50;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}
h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #28a745; /* Green accent */
    margin: 10px auto 0;
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #28a745;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #218838;
    text-decoration: none;
}

/* Header */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo h1 {
    font-size: 1.8em;
    margin: 0;
    color: #2c3e50;
}
header .logo p {
    font-size: 0.8em;
    margin: -5px 0 0;
    color: #555;
    font-weight: 400;
}
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
header nav li {
    margin-left: 30px;
}
header nav a {
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}
header nav a:hover {
    color: #28a745;
    text-decoration: none;
}
.contact-header {
    font-size: 0.9em;
    color: #777;
}
.contact-header a {
    color: #777;
}
.contact-header a:hover {
    color: #28a745;
}

/* Sticky Header & Nav */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #28a745;
}

.nav-btn {
    background: #28a745;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50; /* Professional Dark Blue */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: #28a745; /* Brand Green */
}

/* Mobile Menu Logic */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px auto;
        display: block;
        transition: 0.3s;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }
}

/* Centering Utility */
.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.about-text {
    max-width: 800px; /* Limits width for better readability */
    margin: 0 auto;
}

.credentials {
    margin-top: 25px;
    font-size: 0.9em;
    color: #28a745;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Benchmarks Section Styles */
.benchmarks-section {
    padding: 100px 0;
    background-color: #f8f9fa; /* Light grey to distinguish from the white sections */
}

.benchmarks-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benchmarks-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.benchmarks-table th {
    text-align: left;
    padding: 20px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benchmarks-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.metric-name {
    font-weight: 600;
    color: #2c3e50;
}

.poly-value {
    color: #28a745; /* Brand Green */
    font-weight: 700;
}

.benchmarks-note {
    font-size: 0.85em;
    color: #888;
    font-style: italic;
    text-align: center;
}

/* Mobile Responsiveness for Table */
@media (max-width: 600px) {
    .benchmarks-table {
        font-size: 0.8em;
    }
    .benchmarks-table th, .benchmarks-table td {
        padding: 12px 10px;
    }
    .benchmarks-container {
        padding: 20px;
    }
}

/* Collaboration Section Styles */
.collaboration-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.collab-card {
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 15px;
    background: #fdfdfd;
    transition: all 0.3s ease;
    border-top: 4px solid #2c3e50; /* Professional Blue accent */
}

.collab-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    border-top-color: #28a745; /* Switches to Brand Green on hover */
}

.collab-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.collab-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.4em;
}

.collab-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.collab-list {
    list-style: none;
    padding: 0;
}

.collab-list li {
    font-size: 0.85em;
    color: #2c3e50;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.collab-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Leadership Section Styles */
.leadership-section {
    padding: 80px 0;
    background-color: #fff;
}

.founder-label {
    color: #28a745;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.9em;
    display: block;
    margin-bottom: 10px;
}

.profile-frame {
    position: relative;
    padding: 15px;
    border: 2px solid #28a745;
    border-radius: 15px;
    display: inline-block;
}

.profile-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.profile-img:hover {
    filter: grayscale(0%);
}

.leadership-section .text-col h2 {
    text-align: left;
    margin-top: 10px;
}

.leadership-section .text-col h2::after {
    margin: 10px 0 20px 0; /* Align underline to the left */
}

@media (max-width: 768px) {
    .leadership-section .text-col h2 {
        text-align: center;
    }
    .leadership-section .text-col h2::after {
        margin: 10px auto;
    }
}

/* Enhanced Leadership Styling */
.credentials {
    color: #28a745;
    font-size: 0.8em;
}

.founder-title {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Ensures responsiveness on mobile */
}

.image-col, .text-col {
    flex: 1;
    min-width: 300px;
}

.button-group {
    margin-top: 30px;
}

/* Ensure all section headers are centered */
section h2 {
    width: 100%;
}

/* Value Chain Section Styles */
.strategy-section {
    padding: 80px 0;
    background-color: #f4f7f6;
    text-align: center;
}

.strategy-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

.value-chain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.chain-step {
    flex: 1;
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.chain-step:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #28a745;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9em;
}

.step-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.chain-step h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.chain-step p {
    font-size: 0.85em;
    color: #777;
    line-height: 1.4;
}

.chain-arrow {
    font-size: 2em;
    color: #28a745;
    font-weight: bold;
}

/* Responsive adjustments for mobile */
@media (max-width: 992px) {
    .chain-arrow {
        display: none; /* Hide arrows on smaller screens */
    }
    .value-chain {
        flex-direction: column;
        gap: 40px;
    }
}

/* Economic Impact Section Styles */
.impact-section {
    padding: 100px 0;
    background-color: #2c3e50; /* Deep professional navy */
    color: #ffffff;
}

.impact-section h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

.impact-intro {
    text-align: center;
    color: #bdc3c7;
    margin-bottom: 60px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #28a745;
    transition: background 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.impact-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.impact-icon {
    font-size: 2em;
    margin-right: 15px;
}

.impact-card h4 {
    font-size: 1.4em;
    margin: 0;
    color: #28a745;
}

.impact-card ul {
    list-style: none;
    padding: 0;
}

.impact-card li {
    margin-bottom: 15px;
    font-size: 0.95em;
    line-height: 1.6;
    color: #ecf0f1;
}

.impact-card li strong {
    color: #ffffff;
    display: block;
}

/* Vision Section Enhancements */
.vision-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.15em;
    color: #444;
    line-height: 1.8;
}

#vision .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 4px solid #28a745; /* Brand Green Accent */
}

.gallery-text {
    padding: 25px;
}

.gallery-text h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 1.4em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.gallery-text p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.timeline-bar {
    background: #e9ecef;
    border-radius: 10px;
    height: 20px;
    margin: 10px 0;
    overflow: hidden;
}
.progress {
    background: #28a745;
    color: white;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    transition: width 1s ease-in-out;
}
.timeline-status {
    font-size: 0.8em;
    color: #666;
    font-style: italic;
}

/* Values & SDG Section Styles */
.values-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.values-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.value-card {
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #28a745;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
    transform: scale(1.02);
}

.value-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

/* Logo and Header Alignment */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and text */
}

.nav-logo {
    height: 65px; /* Adjust this value to make the logo larger or smaller */
    width: auto;  /* Maintains aspect ratio */
    display: block;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5em; /* Slightly smaller to match the logo height */
    margin: 0;
    line-height: 1;
    color: #2c3e50;
}

.logo-text p {
    font-size: 0.75em;
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #28a745;
}

/* Ensure the header container stays centered */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}
#hero .container {
    padding: 0;
}
#hero h2 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #fff;
}
#hero h2::after {
    background-color: #fff;
}
#hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Section Styling */
section {
    padding: 80px 0;
}
.alt-bg {
    background-color: #f8f8f8;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}
.section-content.reverse {
    flex-direction: row-reverse;
}
.section-content .text-col,
.section-content .image-col {
    flex: 1;
}
.section-content .image-col img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Technical Table Styles */
.specs-container {
    margin-top: 50px;
    background: #fdfdfd;
    padding: 40px;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.specs-container h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95em;
    border-radius: 8px;
    overflow: hidden; /* Rounds the table corners */
}

.specs-table certain thead tr {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: left;
}

.specs-table th, .specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.specs-table tbody tr:nth-of-type(even) {
    background-color: #f8f9fa;
}

.specs-table tbody tr:last-of-type {
    border-bottom: 3px solid #28a745;
}

.table-note {
    font-size: 0.8em;
    color: #888;
    font-style: italic;
}

/* Mobile Responsiveness for Table */
@media (max-width: 600px) {
    .specs-table {
        display: block;
        overflow-x: auto;
    }
}

/* Specific Section Styles */
#solution .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
#solution .grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#solution .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
#solution .grid-item h3 {
    color: #28a745;
    margin-top: 0;
}
#solution .grid-item img {
    max-width: 100px; /* Small icons for features */
    margin-bottom: 20px;
}

#impact .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
#impact .impact-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}
#impact .impact-item img {
    max-width: 80px; /* Icons for impact areas */
    margin-bottom: 20px;
}
#impact .impact-item h3 {
    color: #2c3e50;
    margin-top: 0;
}

#partnerships .partner-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}
#partnerships .partner-logo-grid img {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
#partnerships .partner-logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

#vision .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
#vision .gallery img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* News Section Styles */
.news-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.news-intro {
    text-align: center;
    margin-bottom: 50px;
    color: #777;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 5px solid #28a745; /* Brand green */
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85em;
    color: #28a745;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-card h3 {
    font-size: 1.25em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.news-card p {
    font-size: 0.95em;
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    font-size: 0.9em;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: #28a745;
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: #28a745;
}

.project-tag {
    background: #28a745;
    color: white;
    padding: 8px 15px;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
    border-bottom-right-radius: 12px;
}

.project-info {
    padding: 25px;
}

.project-info h4 {
    margin-bottom: 5px;
    font-size: 1.3em;
    color: #2c3e50;
}

.location {
    font-size: 0.9em;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 15px;
}

.project-stats {
    list-style: none;
    padding: 15px 0 0;
    margin-top: 15px;
    border-top: 1px dashed #ddd;
    display: flex;
    justify-content: space-between;
}

.project-stats li {
    font-size: 0.8em;
    color: #666;
}

.project-stats li strong {
    display: block;
    color: #2c3e50;
}

/* Contact Section */
#contact .contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 40px auto 0;
}
#contact .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
#contact .contact-form input[type="text"],
#contact .contact-form input[type="email"],
#contact .contact-form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}
#contact .contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
#contact .contact-form button {
    background-color: #2c3e50;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
#contact .contact-form button:hover {
    background-color: #34495e;
}

/* Community Empowerment Styling */
.impact-subheader {
    text-align: center;
    margin: 60px 0 30px;
}

.impact-subheader h3 {
    font-size: 2rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.impact-subheader h3::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #28a745; /* Brand Green */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.impact-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.impact-card:hover {
    border-bottom: 3px solid #28a745;
    transform: translateY(-5px);
}

/* Strategic CTA Section Styles */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-subtext {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.cta-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cta-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-box p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 25px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #28a745;
    color: #28a745;
}

.btn-outline:hover {
    background: #28a745;
    color: #fff;
}

.btn-green {
    background: #28a745;
    color: #fff;
}

.eng-seal {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 0.85em;
    color: #888;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

/* Glossary Styles */
.glossary-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.glossary-intro {
    margin-bottom: 40px;
    color: #666;
    font-style: italic;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.glossary-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #28a745;
}

.glossary-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.glossary-item p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .social-links {
    margin-top: 15px;
}
footer .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.1em;
}
footer .social-links a:hover {
    color: #28a745;
    text-decoration: none;
}

/* Footer Styles */
.site-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 20px;
    font-size: 0.9em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo span {
    color: #28a745;
}

.footer-creds {
    margin-bottom: 15px;
    line-height: 1.6;
}

.peo-notice {
    display: inline-block;
    border: 1px solid #34495e;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    color: #bdc3c7;
}

.footer-col h4 {
    color: #28a745;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 0.75em;
    color: #7f8c8d;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    header nav ul {
        flex-direction: column;
        margin-top: 15px;
    }
    header nav li {
        margin: 10px 0;
    }
    .contact-header {
        margin-top: 15px;
    }

    #hero h2 {
        font-size: 2.5em;
    }
    #hero p {
        font-size: 1.2em;
    }

    .section-content {
        flex-direction: column;
        text-align: center;
    }
    .section-content.reverse {
        flex-direction: column; /* Revert for small screens */
    }
    .section-content .image-col {
        margin-top: 30px;
    }

    h2 {
        font-size: 2em;
    }
}