/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
    padding: 0 15px; /* Add horizontal padding */
}

/* Header */
.header {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    display: flex;  /* Use flexbox for layout */
    align-items: center;  /* Vertically align items */
    justify-content: space-between; /* Distribute space between logo and nav */
}

.header .logo { /* Logo container styles */
    display: flex;  /* Enable flexbox for vertical alignment */
    align-items: center; /* Vertically center the logo */
}

.header .logo img { /* Logo image styles */
    max-width: 100%; /* Set a maximum width; adjust as needed */
    height: auto;     /* Maintain aspect ratio */
}


/* Navigation Styles (Cleaned up) */
.navbar ul { 
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* Horizontal navigation */
}

.navbar li {
    margin: 0 1rem;
}

.navbar a {
    text-decoration: none;
    color: #fff;
}

/* ... (Rest of your CSS styles for hero, sections, footer, etc.) */

/* Hero Section */
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.hero .cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #ff6f61;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 2rem 0;
}

h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.values, .blog-list, .ecosystem {
    display: flex;
    flex-wrap: wrap; 
    gap: 1rem;
}

.value-item, .blog-post, .ecosystem {
    flex: 1;
    min-width: 200px;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
}

.ecosystem-item a {
    text-decoration: none;
}

.value-item i {
    font-size: 2rem;
    color: #ff6f61;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.footer .social-icons a {
    color: #fff;
    margin: 0 0.5rem;
    text-decoration: none;
}
