/* General styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #007bff;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.navigation {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    font-weight: 600;
}

.nav-links li a {
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/Users/inam/Downloads/alexandra-gorn-JIUjvqe2ZHg-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}


/* Story Section */
.story-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007bff;
}

.story-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Product Highlights Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.feature {
    flex-basis: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.features h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007bff;
}

.features p {
    font-size: 1rem;
    color: #666;
}

/* Form Section */
.form-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #007bff;
}

.form-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 90%;
    max-width: 400px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #007bff;
}

textarea {
    height: 100px;
    resize: none;
}

button[type="submit"] {
    padding: 10px 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Footer Section */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content p {
    margin: 10px 0;
}

.social-links a,
.legal-links a {
    margin: 0 10px;
    color: #fff;
    font-size: 1rem;
}

.social-links a:hover,
.legal-links a:hover {
    color: #4CAF50;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .features {
        flex-wrap: nowrap;
    }

    .feature {
        flex-basis: 30%;
        max-width: none;
        margin-bottom: 0;
    }
}
