/* === Peacemaker Page Styles === */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* ===== Hero Section ===== */
.peacemaker-hero {
    background: linear-gradient(135deg, #007BFF 0%, #00A8FF 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
}

.peacemaker-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.peacemaker-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.peacemaker-hero .btn-primary {
    background-color: #fff;
    color: #007BFF;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-decoration: none;
}

.peacemaker-hero .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* ===== Call Types Grid ===== */
.call-types {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.call-types h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #007BFF;
}

.call-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.call-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.call-card h3 {
    font-size: 1.3rem;
    color: #007BFF;
    margin-bottom: 0.8rem;
}

.call-card p {
    font-size: 1rem;
    color: #555;
}

.call-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ===== Pricing Grid ===== */
.pricing-section {
    padding: 4rem 2rem;
    background-color: #f0f8ff;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card h3 {
    font-size: 1.3rem;
    color: #007BFF;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.pricing-card h4 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-top: 0.5rem;
    font-weight: 700;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ===== Booking Form ===== */
.booking-form-section {
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.booking-form-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.booking-form-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.booking-form button.btn-primary {
    display: block;
    margin: 2rem auto 0;
    background-color: #007BFF;
    color: #fff;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    cursor: pointer;
}

.booking-form button.btn-primary:hover {
    background-color: #0056b3;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.step {
    background-color: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ===== Contact & Support ===== */
.contact-support {
    padding: 3rem 2rem;
    text-align: center;
}

.contact-support h2 {
    font-size: 2rem;
    color: #007BFF;
    margin-bottom: 1rem;
}

.contact-support p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-support a {
    color: #007BFF;
    text-decoration: none;
}

.contact-support a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .peacemaker-hero h1 {
        font-size: 2.2rem;
    }

    .peacemaker-hero p {
        font-size: 1rem;
    }

    .call-grid,
    .pricing-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}