/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
}

header nav ul {
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ff9900;
}

/* Hero section styling */
.hero {
    background-image: url('sunny-day.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #ff9900;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e68000;
}

/* About section styling */
.about {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.about h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about p {
    font-size: 16px;
    margin-bottom: 30px;
}

.learn-more-button {
    display: inline-block;
    background-color: #ff9900;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.learn-more-button:hover {
    background-color: #e68000;
}

/* Join section styling */
.join {
    background-color: #f0f0f0;
    padding: 50px 0;
    text-align: center;
}

.join h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.join p {
    font-size: 16px;
    margin-bottom: 30px;
}

.join-button {
    display: inline-block;
    background-color: #ff9900;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.join-button:hover {
    background-color: #e68000;
}

/* Footer styling */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

/* Styling for the "reason" class */
.reason {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.reason h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.reason p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.source-link {
    font-size: 14px;
    color: #ff9900;
    text-decoration: none;
}

.source-link:hover {
    text-decoration: underline;
}

/* Add CSS for the state-by-state list on the Legislation page */
.state-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.state {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.state h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.state p {
    font-size: 16px;
    color: #555;
    margin-bottom: 0;
}

/* Add CSS for the "Take Action" page */
.page-content {
    padding: 40px;
}

.action-item {
    margin-bottom: 30px;
}

.action-item h2 {
    font-size: 24px;
    color: #333;
}

.action-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.action-item ol {
    list-style-type: decimal;
    margin-left: 20px;
}

.action-item li {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 5px;
}

.action-item a {
    color: #ff9900;
    text-decoration: none;
}

.action-item a:hover {
    text-decoration: underline;
}
