/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #0056b3;
}

header nav a {
    color: #333;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav a:hover, header nav a.active {
    color: #0056b3;
}


/* Hero Section */
.hero {
    background-color: #004a99;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); /* Dark overlay */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Zapier Form Placeholder Container */
.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
}
.form-container h3 {
    color: #333;
    margin-top: 0;
    text-align: center;
}
.form-container p {
    text-align: center;
    margin-bottom: 20px;
}
.contact-page-form {
    margin-top: 40px;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background-color: #fff;
}
.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.benefit-item {
    text-align: center;
    padding: 20px;
}
.benefit-item h3 {
    color: #0056b3;
}

/* How It Works Section (Summary & Detailed) */
.how-it-works-summary {
    padding: 60px 0;
    text-align: center;
}
.how-it-works-summary h2 {
    font-size: 36px;
    margin-bottom: 40px;
}
.steps-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}
.step {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex: 1;
}
.step h3 {
    font-size: 22px;
    color: #0056b3;
    margin-bottom: 10px;
}

/* Generic Page Header */
.page-header {
    background-color: #0056b3;
    color: white;
    padding: 40px 0;
    text-align: center;
}
.page-header h1 {
    margin: 0;
    font-size: 38px;
}

/* Content Sections for Inner Pages */
.content-section {
    padding: 60px 0;
    background: #fff;
}

/* FAQ Page Styles */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #0056b3;
}
.faq-item p {
    margin: 0;
}

/* Detailed Process Page Styles */
.process-detailed .process-step {
    background-color: #f9f9f9;
    border-left: 4px solid #0056b3;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 0 5px 5px 0;
}
.process-detailed h3 {
    margin-top: 0;
}

/* Contact Page Styles */
.contact-info p {
    font-size: 18px;
    line-height: 1.8;
}
.contact-info a {
    color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}
footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    header nav a {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .steps-container {
        flex-direction: column;
    }
}

/* Navigation Call-to-Action Button */
.nav-cta {
    background-color: #28a745;
    color: #fff !important; /* Use !important to override default link color */
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background-color: #218838;
    transform: translateY(-2px); /* Lifts the button slightly on hover */
}