/* --- Basic Setup --- */
:root {
    --primary-color: #007bff; /* A nice, corporate blue */
    --secondary-color: #333;
    --light-gray: #f4f4f4;
    --text-color: #333;
    --text-light: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

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

/* --- Header & Navigation --- */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* --- Hero & CTA Sections --- */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(45deg, #007bff, #0056b3);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- General Content Sections --- */
.content-section {
    padding: 4rem 0;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.bg-light {
    background-color: var(--light-gray);
}

.product-image {
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Features & Team Grids --- */
.features-grid, .team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.feature-item, .team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-basis: 300px; /* Base width for each item */
    flex-grow: 1; /* Allows items to grow and fill space */
}

.bg-light .feature-item {
    background: #fff;
}

.feature-item h3, .team-member h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member p {
    font-style: italic;
    color: #666;
    margin: 0;
}

/* --- Contact Form --- */
.contact-form {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-form input[type="email"] {
    padding: 15px;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
    min-width: 300px;
    flex-grow: 1;
}

.contact-form button {
    background: #28a745; /* A nice "success" green */
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-grow: 1;
}

.contact-form button:hover {
    background: #218838;
}

/* --- Footer --- */
footer {
    background: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 10px;
    }
    nav ul {
        justify-content: center;
    }
    .contact-form {
        flex-direction: column;
    }
}
