/* File: /home/zippyforge1/public_html/style.css */
/* Basic Reset & Body Style */
:root {
    --primary-color: #1a2930; /* Dark Blue/Grey */
    --secondary-color: #f39c12; /* Zippy Orange */
    --accent-color: #c0392b; /* Reddish accent */
    --light-bg-color: #f4f7f6;
    --text-color-light: #fff;
    --text-color-dark: #333;
    --card-bg-color: #ffffff;
    --border-radius: 5px;
}

body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg-color);
    color: var(--text-color-dark);
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: visible; /* Allow for box shadows etc. */
    padding: 20px 0;
}

/* Header & Nav */
header {
    background: var(--primary-color);
    color: var(--text-color-light);
    padding: 1rem 0;
    border-bottom: var(--secondary-color) 4px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.logo {
    font-size: 2em;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.nav-links a {
    color: var(--text-color-light);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 41, 48, 0.85), rgba(26, 41, 48, 0.85)), url('placeholder-hero-background.jpg') no-repeat center center/cover; /* Optional background image */
    /* If no image, fallback to solid color */
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 80px 20px; /* More padding */
    text-align: center;
    /* display: flex;
    flex-direction: column;
    align-items: center; */ /* Removed to allow hero-visual to be beside on larger screens if desired */
}


.hero-content {
    max-width: 750px;
    margin: 0 auto 30px auto; /* Center content */
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}
.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.hero .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-form {
    margin-top: 20px;
}
.cta-form p {
    margin-bottom: 15px;
    font-weight: 500;
}

.cta-form input[type="email"] {
    padding: 15px; /* Increased padding */
    width: 60%;
    max-width: 350px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1em;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.cta-form button {
    padding: 15px 25px; /* Increased padding */
    background: var(--secondary-color);
    color: var(--text-color-light);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-form button:hover {
    background: #e88d0b; /* Darker orange */
    transform: translateY(-2px);
}
.cta-form button:active {
    transform: translateY(0px);
}


.form-message {
    margin-top: 15px;
    font-size: 0.95em;
    min-height: 1.3em;
    font-weight: 500;
}
.form-message.success { color: #27ae60; } /* Green */
.form-message.error { color: var(--accent-color); }
.form-message.info { color: #2980b9; } /* Blue for info/processing */


.hero-visual {
    margin-top: 40px;
}
.hero-visual img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* About & How It Works Sections */
.about, .how-it-works, .features-preview {
    padding: 60px 20px;
    text-align: center;
}
.about { background-color: var(--card-bg-color); }
.features-preview { background-color: var(--light-bg-color); }


.about h2, .how-it-works h2, .features-preview h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
}
.about p, .how-it-works p {
    font-size: 1.1em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: var(--card-bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 2.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: inline-block; /* Or block if you want it on its own line */
}

.feature h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}
.feature p {
    font-size: 0.95em;
    line-height: 1.6;
}


/* Call to Action Bottom */
.call-to-action-bottom {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    padding: 60px 20px;
    text-align: center;
}

.call-to-action-bottom h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 600;
}

.call-to-action-bottom p {
    font-size: 1.15em;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button-secondary {
    display: inline-block;
    background-color: var(--text-color-light);
    color: var(--secondary-color);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: var(--border-radius);
    border: 2px solid var(--text-color-light);
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-color: var(--primary-color);
    transform: scale(1.05);
}


/* Footer */
.footer {
    background: var(--primary-color);
    color: #aaa; /* Lighter grey for less emphasis */
    text-align: center;
    padding: 30px 20px;
    margin-top: 0; /* Removed default margin-top if CTA bottom is present */
}
.footer p {
    margin: 0;
    font-size: 0.9em;
}
.footer a {
    color: #ddd; /* Lighter link color in footer */
    text-decoration: none;
}
.footer a:hover {
    color: var(--secondary-color);
}

/* Privacy Page Specific Styling */
.privacy-policy-container {
    padding: 40px 20px;
    background-color: #fff;
    min-height: 70vh; /* Ensure it takes up decent height */
}
.privacy-policy-container .container {
    max-width: 800px; /* Optimal reading width */
}
.privacy-policy-container h1 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}
.privacy-policy-container h2 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}
.privacy-policy-container p, .privacy-policy-container ul {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
}
.privacy-policy-container ul {
    list-style-type: disc;
    padding-left: 30px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    header nav { flex-direction: column; align-items: center; }
    .logo { margin-bottom: 10px; }
    .nav-links a { margin: 5px 10px; }

    .hero-content { padding: 0 10px; } /* Add padding for smaller screens */

    .cta-form { display: flex; flex-direction: column; align-items: center; }
    .cta-form input[type="email"] { width: 90%; border-radius: var(--border-radius); margin-bottom: 10px;}
    .cta-form button { width: 90%; border-radius: var(--border-radius);}

    .features-grid { grid-template-columns: 1fr; /* Single column on small screens */ }
    .feature { margin-bottom: 20px; }
}