body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    /* Dark gray text */
    background-color: #f4f4f4;
    /* Light gray background */
}

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

header {
    background-color: #2c3e50;
    /* Dark bluish gray header */
    color: white;
    padding: 1em 0;
}

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

header h1 {
    margin: 0;
}

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

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    padding: 50px 0;
    background-color: #e0f2f7;
    /* Very light blueish gray */
}

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

.hero-content {
    flex: 1;
    padding-right: 20px;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2c3e50;
    /* Dark bluish gray */
}

.hero-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    /* Medium gray */
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 80%;
    height: auto;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
}

.button.primary {
    background-color: #3498db;
    /* Blue primary button */
    color: white;
}

.button.secondary {
    background-color: #27ae60;
    /* Green secondary button */
    color: white;
}

.features {
    padding: 50px 0;
    background-color: #fff;
    /* White background */
}

.features h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    /* Dark bluish gray */
}

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

.feature-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    /* Light gray border */
    border-radius: 5px;
    background-color: #f9f9f9;
    /* Very light gray background */
}

.feature-item img {
    max-width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #3498db;
    /* Blue feature heading */
    margin-bottom: 10px;
}

.how-it-works {
    padding: 50px 0;
    background-color: #e0f2f7;
    /* Very light blueish gray */
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    /* Dark bluish gray */
}

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

.step-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    /* White background */
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Light shadow */
}

.step-number {
    display: inline-block;
    background-color: #3498db;
    /* Blue step number background */
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-item h3 {
    color: #2c3e50;
    /* Dark bluish gray */
    margin-bottom: 10px;
}

.get-started {
    padding: 80px 0;
    background-color: #fff;
    /* White background */
    text-align: center;
}

.get-started h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #2c3e50;
    /* Dark bluish gray */
}

.get-started p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    /* Medium gray */
}

.already-member {
    margin-top: 15px;
    color: #777;
    /* Light gray text */
}

.already-member a {
    color: #3498db;
    /* Blue link */
    text-decoration: none;
}

.contact {
    padding: 50px 0;
    background-color: #f4f4f4;
    /* Light gray background */
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    /* Dark bluish gray */
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    /* White background */
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Light shadow */
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    /* Dark gray text */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    /* Light gray border */
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

footer {
    background-color: #2c3e50;
    /* Dark bluish gray footer */
    color: white;
    padding: 1em 0;
    text-align: center;
}

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

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

footer nav ul li {
    margin-left: 20px;
}

footer nav ul li a {
    color: white;
    text-decoration: none;
}

/* Styles for yesterday-results.html */
.yesterday-results {
    padding: 50px 0;
    background-color: #f9f9f9;
    /* Very light gray background for contrast */
}

.yesterday-results h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    /* Dark bluish gray */
}

.yesterday-results .intro {
    text-align: center;
    color: #555;
    /* Medium gray */
    margin-bottom: 30px;
}

.poll-result {
    background-color: #fff;
    /* White background for each poll result */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Light shadow */
}

.poll-result h3 {
    color: #3498db;
    /* Blue poll title */
    margin-bottom: 10px;
}

.results-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.results-list li {
    margin-bottom: 8px;
    color: #333;
    /* Dark gray text */
}

.results-list li .percentage {
    font-weight: bold;
    color: #27ae60;
    /* Green percentage */
    margin-left: 10px;
}

.total-votes {
    font-style: italic;
    color: #777;
    /* Light gray text */
}

.yesterday-results .disclaimer {
    text-align: center;
    color: #777;
    /* Light gray text */
    margin-top: 30px;
}

/* Style for the active navigation link */
header nav ul li a.active {
    font-weight: bold;
    text-decoration: underline;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.store-icon img.store-badge {
    height: 60px;
    transition: transform 0.2s ease;
}

.store-icon img.store-badge:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .store-icon img.store-badge {
        height: 50px;
    }
}

.social-media a i {
    font-size: 20px;
    color: white;
    transition: transform 0.2s ease;
}
.social-media a:hover i {
    transform: scale(1.2);
}


