/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fff; /* Set text color to white */
    background-color: #000; /* Set background color to black */
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: #ff1493; /* Hot pink for headings */
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

section {
    padding: 40px 0;
}

a {
    text-decoration: none;
    color: white; /* Links remain white */
}

/* Hero Section */
.hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
    color: #ff1493; /* Hot pink for hero section headings */
}

.hero p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.cta-button {
    background: #ff1493; /* Hot pink background for call-to-action buttons */
    color: #fff; /* White text on buttons */
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #ff69b4; /* Darker hot pink on hover */
}

/* About Section */
.about {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
    color: #fff; /* White text */
}

.about-photo {
    flex: 1;
    text-align: center;
}

.about-photo img {
    max-width: 50%;
    border-radius: 10px;
}

/* Platform Points Section */
.platform .platform-point {
    margin: 20px 0;
    color: #fff; /* White text */
}

.platform h3 {
    color: #ff1493; /* Hot pink headings */
}

/* Duties Section */
.duties ul {
    list-style-type: square;
    padding-left: 20px;
    color: #fff; /* White text */
}

/* Get Involved Section */
.get-involved .cta-box {
    background: #333; /* Dark gray background for CTA boxes */
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    border-radius: 10px;
    color: #fff; /* White text */
}

.get-involved .cta-box h3 {
    margin-top: 0;
    color: #ff1493; /* Hot pink headings */
}

.get-involved .cta-box .cta-button {
    display: inline-block;
    margin-top: 15px;
    background-color: #ff1493; /* Hot pink for buttons */
}

.get-involved .cta-box .cta-button:hover {
    background-color: #ff69b4; /* Darker hot pink on hover */
}

/* Endorsements Section */
.endorsements .endorsement {
    background: #333; /* Dark gray background */
    padding: 20px;
    margin: 10px 0;
    border-radius: 10px;
    color: #fff; /* White text */
}

/* Contact Section */
.contact form {
    display: flex;
    flex-direction: column;
}

.contact form label {
    margin: 10px 0 5px;
    color: #fff; /* White text */
}

.contact form input, .contact form textarea {
    padding: 10px;
    border: 1px solid #ff1493; /* Hot pink borders */
    border-radius: 5px;
    font-size: 1rem;
    background-color: #000; /* Black background for input fields */
    color: #fff; /* White text inside input fields */
}

.contact form button {
    background: #ff1493; /* Hot pink submit button */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1.2rem;
}

.contact form button:hover {
    background: #ff69b4; /* Darker hot pink on hover */
}

/* Footer */
.footer {
    background: #333; /* Dark gray footer */
    color: white;
    text-align: center;
    padding: 20px 0;
}
