@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css');

:root {
    --primary-color: #14a86b; 
    --primary-dark: #0f8654;
    --secondary-color: #0a0a0a;
    --bg-light: #ffffff;
    --text-main: #4a4a4a;
}

/* Buttons scoped to v2 containers */
.content-wrapper .btn-primary-custom, 
.content-wrapper .btn,
.hero-section .btn-primary-custom,
.hero-section .btn,
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.content-wrapper .btn-primary-custom:hover, 
.content-wrapper .btn:hover,
.hero-section .btn-primary-custom:hover,
.hero-section .btn:hover,
.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    background-image: url('/web/images/hero-bg-v2.jpg'); 
    background-size: cover;
    background-position: center;
    background-color: var(--secondary-color);
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-section p {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.9;
    color: white;
}

/* Content Wrapper */
.content-wrapper {
    background: #ffffff;
    padding: 4rem 15px;
    max-width: 1100px;
    margin: 0 auto;
    color: var(--text-main);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem 15px;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
}

/* Headings scoped to .content-wrapper */
.content-wrapper h2 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-top: 20px;
}

/* The green accent bar above headings */
.content-wrapper h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.content-wrapper h3 {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.content-wrapper h3 i {
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Lists - default style if not converted to cards */
ul.standard-list, ol.standard-list {
    padding-left: 0;
}

ul.standard-list li {
    list-style: none;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
}

ul.standard-list li::before {
    content: '\F26A'; /* Bootstrap Icon check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

ol.standard-list li {
    margin-bottom: 12px;
}

/* Tables scoped to .content-wrapper */
.content-wrapper table, .content-wrapper .table {
    width: 100%;
    margin-bottom: 2rem;
    color: var(--text-main);
    border-collapse: collapse;
}

.content-wrapper table thead th, .content-wrapper .table thead th {
    background-color: #f1f5f9;
    color: var(--secondary-color);
    padding: 1.2rem;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
}

.content-wrapper table tbody td, .content-wrapper .table tbody td {
    padding: 1.2rem;
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
}

.content-wrapper table tbody tr:hover td, .content-wrapper .table tbody tr:hover td {
    background-color: #f8fafc;
}

/* ASCII tables styling scoped to .content-wrapper */
.content-wrapper pre {
    background: #f8fafc;
    color: var(--text-main);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 2rem 0;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 auto;
}
.container.hero-content {
    padding: 10% 0 0;
}
.navigation ul li a {
    text-decoration: none;
}

.feature-card h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Image + Text Section */
.section-image-wrapper {
    margin: 4rem 0;
}

.section-image-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; 
    gap: 40px;
    margin-left: 0;
    margin-right: 0;
}

.section-image-wrapper .col-text {
    flex: 1 1 0%;
    min-width: 300px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

.section-image-wrapper .col-image {
    flex: 1 1 0%;
    min-width: 300px;
    padding: 0;
    align-self: flex-start; 
}

.section-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    object-fit: cover;
    max-height: 500px; 
}

.section-image-wrapper .col-text h2:first-child {
    margin-top: 0;
}

