/* --- Global Styles & Reset --- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f9;
    line-height: 1.6;
}

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

/* --- Header & Navigation --- */
header {
    background: #007bff;
    color: #fff;
    padding: 10px 0;
    border-bottom: 5px solid #0056b3;
}

header h1 {
    float: left;
    margin: 0;
}

header nav {
    float: right;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex; /* Makes navigation horizontal */
}

header ul li {
    padding: 0 15px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: color 0.3s;
}

header ul li a:hover {
    color: #cce0ff;
}

/* --- Hero Section --- */
.hero-section {
    background: #e9ecef;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 30px;
}

.hero-section h2 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #007bff;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* --- Call-to-Action Button --- */
.cta-button {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #218838;
}

.cta-button.secondary {
    background: #6c757d;
}

.cta-button.secondary:hover {
    background: #5a6268;
}

/* --- Features Section --- */
.features-section {
    text-align: center;
    padding: 40px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    margin-top: 20px;
}

.feature-item {
    width: 30%;
    min-width: 250px;
    margin: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.feature-item h4 {
    color: #007bff;
}

/* --- Pricing Section --- */
.pricing-section {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 30px;
}

.price-box {
    width: 300px;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #007bff;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.price-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.price-box li {
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

.price {
    font-size: 2.5em;
    font-weight: bold;
    color: #28a745;
    margin: 10px 0;
}

.price span {
    font-size: 0.5em;
    font-weight: normal;
    color: #6c757d;
}

/* --- Contact Section --- */
.contact-section {
    text-align: center;
    padding: 40px 0;
    background: #e9ecef;
}

.contact-section input[type="email"] {
    padding: 10px;
    width: 60%;
    max-width: 400px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-section .cta-button {
    /* Uses the existing CTA style */
    padding: 10px 20px;
}

/* --- Footer --- */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 0.9em;
}

/* --- Simple Cleanup for Floats --- */
.container:after {
    content: "";
    display: table;
    clear: both;
}
