:root {
    --brand-green: #008701;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-green) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--brand-green) 0%, #006b01 100%);
    color: white;
    padding: 100px 0 80px;
}

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

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-image-placeholder {
    text-align: center;
}

.hero-image-placeholder img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--brand-green) 0%, #006b01 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    background-color: white;
    color: var(--brand-green);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: var(--light-gray);
    color: var(--brand-green);
}

.btn-contact {
    background-color: var(--brand-green);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #006b01;
    color: white;
}

/* Section Titles */
.section-title {
    color: var(--brand-green);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

/* Service Cards */
.service-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-icon {
    color: var(--brand-green);
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Company List */
.company-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 0;
}

.company-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-img {
    max-width: 150px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.company-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.company-logo {
    font-size: 1.5rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background-color: var(--light-gray);
    padding: 30px;
    border-left: 5px solid var(--brand-green);
    margin: 30px 0;
}

/* Value Items */
.value-item {
    margin-bottom: 30px;
}

.value-item i {
    color: var(--brand-green);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Service Section */
.service-section {
    padding: 50px 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-section:last-child {
    border-bottom: none;
}

/* Benefit Items */
.benefit-item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefit-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Box */
.cta-box {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 50px 0;
}

/* Contact */
.contact-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    font-size: 2rem;
    color: var(--brand-green);
    width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--brand-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-details p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--brand-green);
}

.info-box {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--brand-green);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: var(--brand-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-bottom: 15px;
    }
}
