/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Header */
header {
    background: #4CAF50;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    background: #333;
}

nav a {
    padding: 1rem;
    color: #fff;
}

nav a:hover {
    background: #4CAF50;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1500x500') no-repeat center center/cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
}

.btn-primary {
    background: #4CAF50;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    display: inline-block;
}

.btn-primary:hover {
    background: #45a049;
}

/* Sections */
section {
    padding: 2rem;
    text-align: center;
}

.solutions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.solution-card {
    flex: 1 1 calc(33% - 2rem);
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials blockquote {
    background: #f9f9f9;
    border-left: 5px solid #4CAF50;
    margin: 1rem auto;
    padding: 1rem;
    max-width: 800px;
    font-style: italic;
}

.testimonials cite {
    display: block;
    text-align: right;
    color: #555;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}
