* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f5f7fa;
    color: #1f2d3d;
	
    padding-top: 80px; /* match header height */
}

/* HEADER */
/*header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}
*/
	
header {
    position: fixed;
	margin-right: auto;
    margin-left: auto;
    top: 0;
    left: 0;
    right: 0; /* more robust than width:100% */
    z-index: 10000;

    display: flex;
    
    
    padding: 15px 40px;
    background: #fff;
	
	
  justify-content: center;
  align-items: center;
	border-bottom: solid #8abc8b thin;
}
	

/* VERY IMPORTANT: prevent content hiding under header */
body {
    margin: 0;
    padding-top: 80px; /* match header height */
}
.logo {
    font-weight: 700;
    font-size: 20px;
    border: 0px solid #1f2d3d;
    padding: 0px;
}

.cta-btn {
    background: #2e7d32;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}

/* HERO */
.hero {
    text-align: center;
    padding-bottom: 40px;
		padding-left: 20px;
	padding-right: 20px;
	padding-top: 80px;
}

.hero h1 {
    font-size: 40px;
    margin: 10px 0;
}

.hero p {
    color: #6b7b8c;
}

/* CARDS */
.cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 40px;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card h3 {
    margin: 15px 0 5px;
}

.card p {
    font-size: 14px;
    color: #6b7b8c;
}

.card a {
    display: inline-block;
    margin-top: 10px;
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
}

/* FEATURES ROW */
.features {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    background: #eef2f6;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.feature {
    font-size: 14px;
    color: #4a5a6a;
}

/* WHY SECTION */
.why {
    text-align: center;
    padding: 30px 10px;
}

.why h2 {
    margin-bottom: 30px;
}

.why-grid {
    display: flex;
    gap: 20px; /* Increased gap slightly for better breathing room */
    justify-content: center;
    flex-wrap: wrap;
}

.why-item {
    max-width: 350px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

/* This ensures the title and text stack vertically next to the image */
.why-text {
    display: flex;
    flex-direction: column;
}

.why-item img {
    width: 50px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.why-item h4 {
    margin: 0 0 6px;
    font-size: 1.1rem; /* Optional: adjust size to preference */
}

.why-item p {
    margin: 0;
    line-height: 1.4;
}

/* FOOTER */
footer {
    background: #f0f2f5;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    color: #6b7b8c;
}

footer .footer-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

footer h4 {
    margin-bottom: 10px;
}

footer a {
    display: block;
    text-decoration: none;
    color: #6b7b8c;
    margin: 4px 0;
}
/* Button container */
.button-wrapper {
    display: flex;
    justify-content: flex-end; /* moves button to the right */
    align-items: center;
    width: 100%;
}

.cta-btn {
    display: inline-block;
    background: #428428;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #428428;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover Effect */
.cta-btn:hover {
    background: #ffffff;
    color: #428428;
    border: 2px solid #428428;
}
.card-info {
    display: grid;
    grid-template-columns: 50px 1fr; /* flag | text */
    gap: 15px;
    align-items: start; /* aligns flag with title */
}

.flag {
    width: 52px;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
}

.content h3 {
    margin: 0 0 5px;
}

.content p {
    margin: 0 0 8px;
	font-size: 13px!important;
}
	
	.features {
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 25px;
    flex-wrap: wrap;
    gap: 20px;
		
}

.feature {
    position: relative;
    display: grid;
    grid-template-columns: 30px auto;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5a6a;
    padding-right: 20px; /* space for the line */
}

/* Vertical line */
.feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-40%);
    width: 1px;
    height: 40px; /* adjust height */
    background: #ccc;
}
.feature img {
    width:auto;
    height: 32px;
    object-fit: contain;
	
}
/***********Banner************/
	
	.info-banner-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #ffffff;
}

.info-banner {
    max-width: 800px;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e6e6e6;
    position: relative;
}

/* subtle top accent */
.info-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4e8b36, #6fbf4b);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.info-banner p {
    margin: 0;
    font-size: 15px;
    color: #2c3e50;
    line-height: 1.6;
}

.info-banner strong {
    display: block;
    margin-top: 8px;
    color: #4e8b36;
    font-weight: 600;
}
	
	.footer-note {
    text-align: center;
    font-size: 13px;
    color: #666;
}

.footer-note a {
    color: #2e7d32;
    text-decoration: none;
    margin-left: 5px;
	display: inline !important;
}

.footer-note a:hover {
    text-decoration: underline;
}

.divider {
    margin: 0 10px;
    color: #aaa;
}
	
/* Tablets */
@media (max-width: 992px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        justify-content: center;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 26px;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature {
        grid-template-columns: 1fr;
    }

    .feature::after {
        display: none;
    }
}

/* LARGE SCREENS (this is what you were missing) */
@media (min-width: 1400px) {
    .container  {
        max-width: 1400px;
    }
header {
        max-width: 1400px;
	   
	
	
	
    
    }
	
    .hero h1 {
        font-size: 48px;
    }
	footer {
        max-width: 1400px;
	text-align: center !important;
	align-items: center !important;
    }
	
	.features{
        max-width: 1400px;
	text-align: center !important;
	align-items: center !important;
    }

}

/* ===== LARGE SCREENS OPTIMIZATION ===== */

/* 1440px+ */
@media (min-width: 1400px) {
    :root {
        --max-width: 1400px;
    }

    h1 {
        font-size: 48px;
    }

    .cards {
        gap: 60px;
    }

    .hero {
        padding: 110px 0;
    }
}

/* 1600px+ */
@media (min-width: 1600px) {
    :root {
        --max-width: 1500px;
    }

    h1 {
        font-size: 52px;
    }

    .cards {
        gap: 70px;
    }
}

/* 1920px+ (Ultra-wide screens) */
@media (min-width: 1900px) {
    :root {
        --max-width: 1600px;
    }

    h1 {
        font-size: 56px;
    }

    .hero {
        padding: 130px 0;
    }
}