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

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

/* Header & Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.main-nav a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e74c3c;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #3498db, #2980b9);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-item h4 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 0;
}

/* Final CTA Section */
.final-cta {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.final-cta h3 {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
}