/* --- 1. GLOBAL STYLES & RESET (Identical to previous page for consistency) --- */
:root {
    --color-primary: #008080; /* A fresh Teal/Turquoise for "Value" and "Simple" */
    --color-secondary: #2C3E50; /* Deep Navy/Charcoal for professionalism */
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-bg-light: #f9f9f9;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
}

/* --- 2. BUTTONS & CTA (Using Teal as the primary action color) --- */
.button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}

.primary-cta {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 2px solid var(--color-primary);
    font-size: 1.1em;
}

.primary-cta:hover {
    background-color: #006666; /* Darker Teal */
    transform: translateY(-2px);
}

.secondary-cta {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border: 2px solid var(--color-secondary);
    font-size: 1.1em;
}

.secondary-cta:hover {
    background-color: #1a2734; /* Darker Navy */
    transform: translateY(-2px);
}

/* --- 3. HERO SECTION STYLES --- */
.hero {
    background: var(--color-secondary);
    color: var(--color-text-light);
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    color: var(--color-text-light);
    font-size: 3em;
    margin-bottom: 15px;
}

.hero .tagline {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1em;
    margin-bottom: 10px;
}

.hero .sub-tagline {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 30px;
}

/* --- 4. CORE BENEFITS SECTION STYLES --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-card {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.4em;
    margin-top: 15px;
}

.icon-large {
    font-size: 3em;
    color: var(--color-primary);
}

/* --- 5. PRICING TABLE STYLES --- */
.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.pricing-table th {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.featured-row {
    background-color: #e6ffff; /* Light teal background for best value row */
    font-weight: 700;
    border: 2px solid var(--color-primary) !important;
}

.table-note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* --- 6. DIGITAL ADVANTAGE SECTION STYLES --- */
.digital-advantage {
    text-align: center;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-grid i {
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* --- 7. FINAL CTA BAR --- */
.cta-bar {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 30px 0;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

.cta-content p {
    font-size: 1.3em;
    font-weight: 700;
    margin: 10px;
}

.contact-number {
    font-size: 1.1em !important;
    font-weight: 400 !important;
}

/* --- 8. FOOTER --- */
footer {
    background: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* --- NEW PACKAGE LIST STYLES (Replacing Table Styles) --- */

.packages-section .container {
    max-width: 1000px; /* Constrain the list a bit for better appearance */
}

.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.package-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
    font-size: 1.8em;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.package-price {
    font-size: 2.2em;
    font-weight: 900;
    color: var(--color-primary); /* Use Teal to highlight price */
    margin-bottom: 15px;
}

.package-ideal {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    min-height: 40px; /* Keeps card height consistent */
}

.package-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    text-align: left;
}

.package-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.package-card ul li::before {
    content: "✔️"; /* Custom bullet point for features */
    margin-right: 10px;
    color: var(--color-primary);
    font-size: 0.9em;
}

.featured-package {
    border: 4px solid var(--color-primary); /* Highlight the best deal */
}

.digital-upgrade {
    border: 2px solid var(--color-secondary);
}

.table-note {
    margin-top: 30px;
    text-align: center;
}

.button.small-btn {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* --- 9. MOBILE RESPONSIVENESS (For tables) --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
    }
    .pricing-table table {
        border: 0;
    }
    .pricing-table thead {
        display: none;
    }
    .pricing-table tr {
        margin-bottom: 10px;
        display: block;
        border: 1px solid #ddd;
    }
    .pricing-table td {
        display: block;
        text-align: right;
        border-bottom: 1px dotted #ccc;
    }
    .pricing-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
        color: var(--color-secondary);
    }
    .featured-row {
        border: 3px solid var(--color-primary) !important;
    }
    .cta-content {
        flex-direction: column;
    }
}
