/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

a {
    text-decoration: none;
    color: #fff;
}

h1, h2, h3 {
    color: #272b30;
}

p {
    margin-bottom: 1em;
}

/* Header */
header {
    background-color: #009fe3;
    padding: 1em 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
    font-size: 1.8em;
    color: white;
    font-weight: bold;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2em;
}

.nav-links {
    list-style-type: none;
}

.nav-links li {
    display: inline-block;
    margin-left: 2em;
}

.nav-links a {
    color: white;
    font-size: 1.1em;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #ffc857;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2em;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.5em;
}

.cta-button {
    background-color: #272b30;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 1.5em;
}

.cta-button:hover {
    background-color: #e63946;
}

/* Features Section */
.features-section {
    padding: 3em 1em;
    background-color: white;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-box {
    width: 30%;
    padding: 1.5em;
    background-color: #e9ecef;
    border-radius: 10px;
    margin-bottom: 1.5em;
}

.feature-box h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.feature-box p {
    font-size: 1em;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3em 1em;
    background-color: #272b30;
    color: white;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.testimonial {
    margin-bottom: 2em;
}

.testimonial p {
    font-size: 1.2em;
}

.testimonial span {
    display: block;
    margin-top: 0.5em;
    font-style: italic;
}

/* Footer */
footer {
    padding: 2em;
    background-color: #000;
    text-align: center;
    color: white


}

footer a, footer p {
    color: white; /* override default anchor color */
}



footer .footer-links a:hover {
    text-decoration: underline;
}


/* Fix for contact-section to match other sections */
.contact-section {
  padding: 3em 1em;
  background-color: white;
  text-align: center;
}

/* Style for the PDF links */
.pdf-link {
  display: block;
  margin-bottom: 10px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.pdf-link:hover {
  text-decoration: underline;
}



.signup-form label,
.signup-form input[type="email"],
.signup-form button {
  font-size: 1.8em;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Adjust header navigation */
    header nav {
        flex-direction: column;
        padding: 0 1em;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0.5em;
    }

    .nav-links li {
        margin: 0.5em 0;
    }

    /* Hero Section adjustments */
    .hero {
        padding: 1em;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1em;
    }
    
    .cta-button {
        padding: 0.5em 1em;
        font-size: 0.9em;
    }
    
    /* Features grid adjustments */
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-box {
        width: 80%;
        margin-bottom: 1em;
    }
    
    /* Testimonials adjustments */
    .testimonials-section h2 {
        font-size: 2em;
    }
    
    .testimonial p {
        font-size: 1em;
    }
    
    /* Footer adjustments if needed */
    footer {
        padding: 1em;
    }
}


/* Custom Section Backgrounds */
.blue-section {
  background-color: #009fe3;
  color: white;
}

.yellow-section {
  background-color: #ffc857;
  color: #000;
}

.blue-section h2,
.yellow-section h2 {
  color: #000;
}

.blue-section a.pdf-link {
  color: #000;
  font-weight: bold;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
}

.blue-section a.pdf-link:hover {
  background-color: rgba(255,255,255,0.1); /* subtle hover only */
}