/* General */
body {
    background-color: #f8f9fa;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #e0ecf8, #f8fbff);
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #003366;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555;
}

/* Section Titles */
.overview-section h2,
.features-section h2,
.company-info h2,
.cta-section h2 {
    font-size: 1.8rem;
    color: #002244;
    margin-bottom: 20px;
    text-align: center;
}

/* Paragraphs */
section p {
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: #003366;
    margin-bottom: 10px;
}

.feature-card ul {
    padding-left: 20px;
}

/* MDM Features */
.mdm-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.mdm-feature {
    width: 300px;
    background-color: #ffffff;
    border-left: 5px solid #003366;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mdm-feature h3 {
    color: #002244;
}

.mdm-feature ul {
    padding-left: 20px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: #e6f0ff;
    padding: 50px 20px;
}

.cta-section p {
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-btn-primary {
    background-color: #003366;
    color: white;
}

.cta-btn-primary:hover {
    background-color: #002244;
}

.cta-btn-secondary {
    background-color: #ccc;
    color: #333;
}

.cta-btn-secondary:hover {
    background-color: #aaa;
}

/* Reseller Badge */
.reseller-badge {
    background-color: #003366;
    color: white;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    margin: 10px 0;
}

/* Footer container spacing (if needed) */
.footer-container {
    margin-top: 80px;
}
