* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #173B30;
    color: white;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.6;
}

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

/* Header Section */

.header {
    background-image: url('assets/fingerprint.svg');
    background-position: right center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.header::before {
    background: linear-gradient(to right, #173B30 10%, #005E48 50%, rgba(46, 125, 50, 0.3) 70%, transparent 100%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.header-background {
    background-image: url('assets/fingerprint.svg');
    background-position: right center;
    background-repeat: no-repeat;
}

.header-content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.logo-section {
    flex: 1;
}

.logo {
    align-items: center;
    display: flex;
    margin: 30px 0;
}

.logo-icon {
    fill: #81c784;
    width: 180px;
}

.hero-text {
    margin: 50px 0;
}

.hero-text h1 {
    color: white;
    font-weight: 600;
    font-size: 2.8rem;
    line-height: 0.9;
    margin-bottom: 10px;
}

.hero-text p {
    color: #e8f5e8;
    font-size: 1rem;
    margin: 30px 0;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: center;
}

.hero-image img {
    clip-path: inset(0 round 15px);
    height: auto;
    max-height: 400px;
    max-width: 500px;
    transform: scaleX(-1);
}

/* Features Section */

.features-section {
    background-color: #173B30;
}

.features-content {
    align-items: center;
    display: flex;
    gap: 60px;
    padding: 10px 0;
}

.features-image {
    flex: 1;
    position: relative;
}

.features-image img {
    border-radius: 15px;
    clip-path: inset(0 round 15px);
    height: auto;
    max-height: 400px;
    max-width: 500px;
}

.features-text {
    flex: 1;
}

.features-text h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    align-items: center;
    display: flex;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.checkmark {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: 20px;
    justify-content: center;
    margin-right: 15px;
    width: 20px;
}

.checkmark img {
    height: 100%;
    width: 100%;
}

/* Bottom Section */

.bottom-section {
    background-color: #173B30;
}

.bottom-section h2 {
    color: white;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.expertise-cards {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 60px;
}

.expertise-card {
    align-items: center;
    background-color: #2C4D43;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    padding: 20px 40px;
}

.expertise-card .icon {
    flex-shrink: 0;
    height: 60px;
    width: 60px;
}

.expertise-card .icon img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.expertise-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer */

.footer {
    background-color: white;
    color: #173B30;
}

.footer-container {
    margin: 0 auto;
    padding: 40px;
}

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

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    align-items: center;
    display: flex;
    gap: 10px;
}

.contact-item .icon {
    fill: #4caf50;
    height: 28px;
    width: 28px;
}

.partners {
    align-items: center;
    display: flex;
    gap: 30px;
}

.partner-logo {
    height: 40px;
}

.partner-logo img {
    height: 100%;
    width: auto;
}

/* Responsive Design */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .features-content {
        flex-direction: column;
    }

    .features-image img {
        width: 100%;
        max-width: 100%;
    }

    .expertise-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        justify-content: center;
    }

    .partners {
        flex-direction: column;
        gap: 20px;
    }

    .partner-logo {
        margin: 10px auto;
    }
}