/* General Body Styles */
body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}

a {
    color: #333;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

/* Header and Navigation */
header {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

nav .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

nav .logo img {
    height: 40px;
}

nav ul {
    display: flex;
    align-items: center;
}

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

nav ul li a {
    padding: 0.5rem;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
}

.cta-button {
    background: #007BFF;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    border-bottom: none !important;
}

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

/* Hero Section */
.hero {
    background: url('https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover;
    color: #fff;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 4rem 0;
    width: 90%;
    margin: auto;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Features Section */
.feature-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    text-align: left;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex: 1;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Solutions Section */
.solutions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.solutions-content, .solutions-image {
    flex: 1;
    text-align: left;
}

.solutions-image img {
    max-width: 100%;
    border-radius: 10px;
}

.solutions-content ul {
    list-style: disc;
    padding-left: 20px;
}

.solutions-content ul li {
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    background: #fff;
}

/* Contact Section */
.contact {
    padding-bottom: 4rem;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer-content ul {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.footer-content ul li {
    margin: 0 15px;
}

.footer-content ul li a {
    color: #fff;
}

/* Responsive Design */
@media(max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .feature-cards {
        flex-direction: column;
    }

    .solutions {
        flex-direction: column;
    }
} 