* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #1A3A37;
    background-color: #F8FAF9;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    color: #2D5F5D;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1A3A37;
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button {
    cursor: pointer;
    border: none;
}

input, button, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 { width: 100%; }

@media (min-width: 768px) {
    .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
    .col-lg-4 { width: 33.333%; }
    .col-lg-5 { width: 41.667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.667%; }
    .col-lg-10 { width: 83.333%; }
}

.navbar {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D5F5D;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #1A3A37;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #2D5F5D;
}

.navbar-toggler {
    display: none;
    background: transparent;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background-color: #2D5F5D;
    display: block;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: #2D5F5D;
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { bottom: -8px; }

@media (max-width: 991px) {
    .navbar-toggler { display: block; }
    .navbar-collapse { display: none; }
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }
    .nav-link { padding: 0.75rem 0; }
}

.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-action-1 {
    background-color: #2D5F5D;
    color: #fff;
}

.btn-action-1:hover {
    background-color: #1A3A37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 93, 0.3);
}

.btn-accent {
    background-color: #E8A87C;
    color: #fff;
}

.btn-accent:hover {
    background-color: #d89565;
}

.btn-light {
    background-color: #fff;
    color: #2D5F5D;
}

.btn-light:hover {
    background-color: #f0f0f0;
}

.hero-section {
    background: linear-gradient(135deg, #F8FAF9 0%, #E8F5F4 100%);
    padding: 5rem 0;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #97C4B8;
    border-radius: 8px;
    z-index: -1;
}

.bg-primary-grad {
    background: linear-gradient(135deg, #2D5F5D 0%, #1A3A37 100%);
}

.bg-accent-grad {
    background: linear-gradient(135deg, #E8A87C 0%, #d89565 100%);
}

.bg-light {
    background-color: #F8FAF9;
}

.bg-white {
    background-color: #fff;
}

.bg-dark {
    background-color: #1A3A37;
}

.bg-secondary-light {
    background-color: #E8F5F4;
}

.text-primary {
    color: #2D5F5D;
}

.text-white{
    color: #fff;
}

.text-accent {
    color: #E8A87C;
}

.text-muted {
    color: #6c757d;
}

.text-light-muted {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
}

.content-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-info-card,
.contact-form-card {
    background-color: #F8FAF9;
    border: 1px solid #e9ecef;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #1A3A37;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #1A3A37;
    background-color: #fff;
    border-color: #2D5F5D;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(45, 95, 93, 0.25);
}

textarea.form-control {
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    margin-bottom: 0;
}

.footer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #97C4B8;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-photo {
    height: 350px;
    object-fit: cover;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
}

.bg-primary-light {
    background-color: rgba(45, 95, 93, 0.1);
}

.value-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.value-icon {
    width: 70px;
    height: 70px;
}

.success-icon {
    width: 100px;
    height: 100px;
}

.policy-content h2 {
    margin-top: 2rem;
}

.policy-content p {
    line-height: 1.8;
}

.diagonal-shape {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.display-3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.display-5 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.display-6 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.fs-1 { font-size: 1.5rem; }
.fs-2 { font-size: 1.375rem; }
.fs-3 { font-size: 1.25rem; }
.fs-4 { font-size: 1.125rem; }
.fs-5 { font-size: 1rem; }

.fw-bold { font-weight: 700; }
.fw-light { font-weight: 300; }

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

.d-flex { display: flex; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }

.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

.gap-3 { gap: 1rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.min-vh-100 { min-height: 100vh; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-15 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-15 { margin-top: 4rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 0.75rem; }
.me-4 { margin-right: 1rem; }
.ms-auto { margin-left: auto; }

.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-15 { padding-top: 4rem; padding-bottom: 4rem; }

.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.rounded-2 { border-radius: 8px; }
.rounded-circle { border-radius: 50%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

.z-index-2 { z-index: 2; }

.opacity-90 { opacity: 0.9; }

.g-6 > * { padding: 1.5rem; }
.g-8 > * { padding: 2rem; }

.order-1 { order: 1; }
.order-2 { order: 2; }

@media (min-width: 992px) {
    .order-lg-1 { order: 1; }
    .order-lg-2 { order: 2; }
    .py-lg-15 { padding-top: 4rem; padding-bottom: 4rem; }
    .py-lg-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .mb-lg-0 { margin-bottom: 0; }
}

@media (min-width: 768px) {
    .py-md-25 { padding-top: 6rem; padding-bottom: 6rem; }
}

@media (max-width: 991px) {
    .display-3 { font-size: 2rem; }
    .display-4 { font-size: 1.75rem; }
    .display-5 { font-size: 1.5rem; }
    .fs-1 { font-size: 1.25rem; }
    .fs-2 { font-size: 1.125rem; }
}