/* CSS Reset and Global Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; background: #f9f9f9; }
a { text-decoration: none; color: #007bff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: #003366; color: #fff; padding: 20px 0; position: sticky; top: 0; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; }
nav .logo { font-size: 24px; font-weight: bold; }
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 20px; }
nav ul li a { color: #fff; padding: 10px; transition: background 0.3s; }
nav ul li a:hover { background: #0056b3; border-radius: 5px; }

/* Hero Section */
#hero { background: linear-gradient(to right, #003366, #00cc66); color: #fff; text-align: center; padding: 100px 0; }
#hero h1 { font-size: 48px; margin-bottom: 20px; }
#hero p { font-size: 24px; margin-bottom: 30px; }
#hero .cta { background: #ff6600; color: #fff; padding: 15px 30px; border-radius: 5px; font-weight: bold; transition: background 0.3s; }
#hero .cta:hover { background: #cc5200; }

/* Features Section */
#features { padding: 80px 0; background: #fff; }
#features h2 { text-align: center; font-size: 36px; margin-bottom: 40px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature { text-align: center; padding: 20px; border: 1px solid #ddd; border-radius: 10px; transition: transform 0.3s; }
.feature:hover { transform: translateY(-10px); }
.feature img { width: 80px; margin-bottom: 20px; }
.feature h3 { font-size: 24px; margin-bottom: 10px; }

/* Pricing Section */
#pricing { padding: 80px 0; background: #f0f0f0; }
#pricing h2 { text-align: center; font-size: 36px; margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.plan { background: #fff; padding: 30px; text-align: center; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.plan h3 { font-size: 28px; margin-bottom: 10px; }
.plan .price { font-size: 36px; color: #007bff; margin-bottom: 20px; }
.plan ul { list-style: none; margin-bottom: 20px; }
.plan ul li { margin-bottom: 10px; }
.plan .cta { background: #007bff; color: #fff; padding: 10px 20px; border-radius: 5px; }

/* Blog Section */
#blog { padding: 80px 0; background: #fff; }
#blog h2 { text-align: center; font-size: 36px; margin-bottom: 40px; }
.blog-post { margin-bottom: 30px; }

/* About Section */
#about { padding: 80px 0; background: #f0f0f0; }
#about h2 { text-align: center; font-size: 36px; margin-bottom: 40px; }

/* Footer */
footer { background: #003366; color: #fff; text-align: center; padding: 20px 0; }
footer a { color: #ccc; }

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #hero h1 { font-size: 36px; }
    #hero p { font-size: 18px; }
    nav ul { flex-direction: column; }
    nav ul li { margin: 10px 0; }
}