* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #ffffff3d;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 40px 0;
    margin: 20px 0;
}

.hero-image {
    flex: 1 1 40%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 10px;
    
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: fill;
}

.hero-content {
    flex: 1 1 50%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-text {
    font-size: clamp(14px, 1.8vw, 16px);
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

/* Our Story Section */
.story-section {
    padding: 40px 20px;
    background-color: #fff;
}

.story-title {
    font-size: clamp(22px, 2.5vw, 26px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-align: left;
}

.story-text {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.6;
    color: #444;
    text-align: justify;
    max-width: 800px;
}

/* Features Section */
.features-section {
    padding: 50px 0;
    width: 94%;
    margin: 40px auto;
    background-color: #0b4d83;
    color: #fff;
    border-radius: 8px;
}

.features-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.feature-box {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-title {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-text {
    font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        flex-direction: column;
    }
    
    .hero-image {
        min-height: 250px;
        margin-bottom: 30px;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
    }
    
    .hero-text, .story-text {
        text-align: center;
    }
    
    .divider {
        margin: 20px auto;
        width: 80%;
    }
    
    .story-title {
        text-align: center;
    }
    
    .features-section {
        width: 96%;
    }
    

}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .story-title, .features-title {
        font-size: 22px;
    }

}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-image {
        min-height: 200px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-text, .story-text {
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
  
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 20px;
    }
    
    .story-title, .features-title {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 13px;
    }
}
@media (prefers-color-scheme: dark) {
    body {
      background-color: #111;
      color: #eee;
    }
    .features-section {
      background-color: #222;
    }
  }