body {
    font-family: monospace, monospace; /* Terminal font */
    background-color: #000; /* Black background */
    color: #34A853; /* Green text */
    margin: 0;
    padding: 0;
    line-height: 1.6; /* Improve readability */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; /* Add some padding around content*/
}

header {
    background-color: #000; /* Slightly lighter black for header */
    padding: 10px 0;
    border-bottom: 1px solid #34A853; /* Green border */
}

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

.logo {
    height: 40px; /* Adjust logo size */
}

nav  a, footer a {
    margin-left: 20px;
    text-decoration: none;
    color: #FBBC05;
}

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

.hero {
    background-color: #000;
    text-align: left; /* Align text to the left */
    padding: 20px 0;
}

.hero h1 {
    font-size: 2.5em; /* Larger heading */
    margin-bottom: 20px;
}

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

.button {
    background-color: #4285F4;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 0; /* No rounded corners */
    border: 2px solid #EA4335; /* Green border for consistency */
    transition: background-color 0.3s, color 0.3s;
}

.button:hover {
    background-color: #FBBC05; /* Slightly darker green on hover */
}

.features, .pricing, .contact {
    padding: 50px 0;
    border-bottom: 1px solid #34A853; /* Green border between sections */
}

.features h2, .pricing h2, .contact h2 {
    color: #FBBC05;
    border-bottom: 2px solid #FBBC05;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.feature-grid, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature, .plan {
    border: 1px solid #34A853;
    padding: 20px;
    text-align: left; /* Align text to the left */
}

.feature h3, .plan h3 {
    margin-bottom: 10px;
}

footer {
    background-color: #000;
    color: #34A853;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #34A853;
}

.container ul li::before {
    content: "\2217 "; /* Unicode character for asterisk */
    color: #00ff00;
    display: inline-block;
    width: 1em;
    position: relative;
    top: -0.25em; /
  }
  
  .container ul li {
    list-style: none;
  }
/* Optional: Add a subtle text shadow for a glow effect */
body, h1, h2, h3, p, a, li {
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}