* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #444;
    background: #FAFAFA;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #111111;
}

.logo {
    font-weight: 600;
    font-size: 22px;
    color: #5FB3A2;
}

nav a {
	padding: 0;
    border-radius: 10px;
    margin: 0;
    text-decoration: none;
    color: #444;
	border: 2px solid #5FB3A2;
    color: #5FB3A2;
	
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #EAF6F3, #FFFFFF);
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero img {
    width: 45%;
    border-radius: 20px;
}

h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 10px;
}

.primary {
    background: #5FB3A2;
    color: white;
}

.secondary {
    border: 2px solid #5FB3A2;
    color: #5FB3A2;
}

.about, .products, .why {
    padding: 70px 0;
}

.split {
    display: flex;
    gap: 40px;
    align-items: center;
}

.split img {
    width: 45%;
    border-radius: 20px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    margin-top: 30px;
}

.cta {
    background: #5FB3A2;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content, .split {
        flex-direction: column;
    }
    .hero img, .split img {
        width: 100%;
    }
}
