/* General Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background: linear-gradient(to bottom, #000000, #1A1A2E);
}

/* Hero Section */
.hero {
    position: relative;
    background: url('../images/small-business-hero.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

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

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero .cta-button {
    padding: 15px 50px;
    font-size: 18px;
    font-weight: 600;
    background-color: #E94560;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.hero .cta-button:hover {
    transform: scale(1.05);
    background-color: #D83A56;
}

/* Package Details Section */
.package-details {
    padding: 60px 20px;
    text-align: center;
}

.package-details .section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.package-details .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.package-details .card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.package-details .card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #E94560;
}

.package-details .card p {
    font-size: 16px;
    color: #333;
}

/* Benefits Section */
.benefits {
    padding: 60px 20px;
    text-align: center;
}

.benefits ul {
    list-style: none;
    margin: 0 auto;
    max-width: 800px;
    padding: 0;
}

.benefits li {
    margin: 10px 0;
    font-size: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits li::before {
    content: "✔️";
    margin-right: 10px;
    color: #E94560;
    font-size: 20px;
}

/* Comparison Section */
.comparison {
    padding: 60px 20px;
    text-align: center;
    background-color: #1A1A2E;
    color: #ffffff;
}

.comparison h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #E94560;
}

.comparison p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 1000px;
    background-color: #ffffff;
    color: #333;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background-color: #E94560;
    color: #ffffff;
}

thead th {
    padding: 15px;
    font-size: 18px;
}

tbody td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f1f1f1;
}

table th, table td {
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 60px 20px;
    text-align: center;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pricing-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
}

.pricing-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.pricing-box h3 {
    font-size: 24px;
    color: #E94560;
    margin-bottom: 10px;
}

.pricing-box p {
    font-size: 18px;
    color: #333;
}
/* Highlight rows for fees and profit */
table .highlight {
    background-color: #99f89e;
    color: #333333;
    font-weight: bold;
}

table .highlight td {
    padding: 15px;
    background-color: #99f89e;
    text-align: center;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    table .highlight {
        background-color: #2c2929;
        color: #ffffff;
    }
}
