/* index.css */

/* Basic Resets & Variables */
:root {
    --primary-blue: #0056b3; /* Darker blue for primary elements */
    --secondary-blue: #007bff; /* Lighter blue for accents */
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa; /* Light background for sections */
    --border-light: #e9ecef; /* Light border color */
    --font-family: Arial, sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f4f4f4; /* Overall light background */
}

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

/* Header */
header {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

header h1 {
    margin: 0;
    font-size: 1.8em;
}

header h1 a {
    color: white;
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.current-page { /* Added class for current page highlight */
    color: #ffd700; /* Gold/yellow for hover/current */
}

/* Sections */
section {
    padding: 40px 0;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

/* Specific Section Styling */
#hero {
    background-color: var(--secondary-blue);
    color: white;
    text-align: center;
    padding: 80px 0;
    border-radius: 0; /* No rounded corners for hero */
    box-shadow: none; /* No shadow for hero */
}

#hero h2 {
    color: white;
    font-size: 3em;
    margin-bottom: 15px;
}

#hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.button {
    display: inline-block;
    background-color: #ffd700; /* Gold */
    color: var(--primary-blue);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #e6c200; /* Darker gold */
}

.content-block {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    background-color: var(--bg-light);
}

.content-block h3 {
    color: var(--secondary-blue);
    margin-top: 0;
    font-size: 1.5em;
}

.content-block ul {
    list-style: disc;
    margin-left: 20px;
}

.content-block li {
    margin-bottom: 8px;
}

/* Pricing Table Specifics (from previous conversation, adapted) */
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    justify-content: center;
    margin-top: 30px;
}

.price-tier {
    flex: 1;
    min-width: 280px;
    max-width: 32%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5em;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

.price-tier:hover {
    transform: translateY(-5px);
}

.price-tier h4 {
    margin-top: 0;
    color: var(--secondary-blue);
    font-size: 1.4em;
}

.price-tier .devices {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 0.5em;
}

.price-tier .price {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.2em;
}

.price-tier .per-device {
    font-size: 0.9em;
    color: #777;
}

.add-on {
    background-color: #f0f8ff; /* Lighter blue */
    border: 1px solid #cceeff;
    border-radius: 8px;
    padding: 1.5em;
    margin-bottom: 2em;
}
.add-on h4 {
    color: var(--primary-blue);
    margin-top: 0;
}
.add-on .description {
    font-size: 0.9em;
    color: #555;
}


/* Footer */
footer {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
    font-size: 0.9em;
}

footer a {
    color: #ffd700; /* Gold for footer links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header .container {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
    }

    nav ul li {
        margin: 5px 0;
    }

    #hero h2 {
        font-size: 2.2em;
    }

    section h2 {
        font-size: 1.8em;
    }

    .pricing-table {
        flex-direction: column;
        align-items: center;
    }

    .price-tier {
        max-width: 90%;
        min-width: unset;
    }
}
