/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Ubuntu", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #FFB81B;
}

@media screen and (max-width: 400px) {
	.logo, .hero {padding:.5rem !important; margin:0 !important;}
}

/* Navbar */
.navbar {
    padding: 2rem;
    display: flex;
    justify-content: center; /* Center logo, or use space-between for links */
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    padding: 2rem;
    margin:5% 10%;
    border-bottom: 5px solid black;
}

/* Hero Section */
.hero {
    /*height: 80vh;*/
    display: flex;
    padding: 2rem;
    margin:0 10%;
}

.container {
    max-width: 800px;
}

.footer {
	font-size: 1em;
	border-top:5px solid black;
	padding:2rem;
	text-align: center;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive scaling font */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

h1 span {
    color: #0070f3; /* Accent color */
}

p {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 1rem;
    max-width: 600px;
}

blockquote {
	font-size:1.5rem;
	padding:.25rem 1.5rem;
}

/* Feature List Styling */
.feature-list {
    list-style: none; /* Removes default bullets */
    padding: 0;
    margin: 0 auto 3rem auto;
    max-width: 500px; /* Keeps the list centered and readable */
    text-align: left; /* Lists are easier to read left-aligned */
}

.feature-list li {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem; /* Space for the custom bullet */
    display: flex;
    align-items: center;
}

/* Custom Bullet / Checkmark */
.feature-list li::before {
    content: "→"; /* You can use a checkmark (✓) or any symbol */
    position: absolute;
    left: 0;
    color: #0070f3; /* Matches your accent color */
    font-weight: 900;
    font-size: 1.2rem;
}

/* Optional: Add a subtle hover effect to list items */
.feature-list li:hover {
    color: #000;
    transform: translateX(5px);
    transition: all 0.2s ease;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #000;
    transform: translateY(-2px);
}

#actionform {margin:1rm 2rm;overflow:auto;}
#actionform::after {
  content: "";
  display: table;
  clear: both;
}