/* General Body and Container Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f7f6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header and Navigation Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #2c3e50;
}

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

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Call to Action Buttons */
.cta-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

.cta-button.primary {
    background-color: #28a745;
}

.cta-button.primary:hover {
    background-color: #218838;
}

.cta-button.secondary {
    background-color: #6c757d;
}

.cta-button.secondary:hover {
    background-color: #5a6268;
}

/* Hero Section */
.hero {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas button {
    margin: 0 10px;
}

/* Section Styling */
section {
    padding: 60px 0;
}

section:nth-of-type(even) {
    background-color: #e9ecef;
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* Feature Grid */
.feature-grid, .solution-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item, .solution-item, .pricing-plan {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-item h3, .solution-item h3, .pricing-plan h3 {
    color: #3498db;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-item p, .solution-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-plan .price {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pricing-plan .price span {
    font-size: 20px;
    font-weight: normal;
    color: #777;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-plan ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.pricing-plan.recommended {
    border: 2px solid #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: #555;
}

.pricing-note a {
    color: #3498db;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.contact-info {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
}

.contact-info p {
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}
