:root {
    --primary-color: #000000; /* Black for buttons and accents */
    --secondary-color: #4682b4; /* Green for hover effects */
    --background-main: #ffffff; /* White main background */
    --background-form: #f0f0f0; /* Light gray for form and content containers */
    --background-dark: #333333; /* Dark gray for footer */
    --text-dark: #000000; /* Black for primary text */
    --text-medium: #666666; /* Medium gray for secondary text */
    --text-light: #ffffff; /* White for text on dark backgrounds */
    --red: #ff6f61; /* Red for icons */
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--background-main);
    line-height: 1.6;
}

.page-content {
    background-color: var(--background-main);
}

.pe-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-main), #f5f5f5);
    position: relative;
    overflow: hidden;
}

.pe-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pe-hero-text {
    flex: 1;
    color: var(--text-dark);
    padding: 2rem;
}

.pe-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pe-hero-text .lead {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.pe-btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.pe-btn-primary:hover {
    background-color: var(--secondary-color);
}

.pe-hero-image-wrap {
    flex: 1;
    position: relative;
    text-align: right;
}

.pe-hero-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 111, 97, 0.1); /* Red for shape */
    border-radius: 50%;
    z-index: 0;
}

.pe-hero-image {
    max-width: 100%;
    height: auto;
    z-index: 1;
    position: relative;
}

.pe-what-you-can-do, .pe-how-it-works, .pe-benefits, .pe-cta {
    padding: 4rem 0;
}

.pe-section-title {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.pe-task-card, .pe-benefit-item {
    background-color: var(--background-form);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pe-task-img-wrap {
    margin-bottom: 1rem;
}

.pe-task-img-wrap img {
    max-width: 100%;
    border-radius: 4px;
}

.pe-task-card h3, .pe-benefit-item h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pe-task-card p, .pe-benefit-item p {
    color: var(--text-medium);
    font-size: 1rem;
}

.pe-how-it-works .row {
    align-items: center;
}

.pe-step {
    background-color: var(--background-form);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Removed display: none to show by default */
}

.pe-icon {
    font-size: 1.5rem;
    color: var(--red); /* Red for icons */
    margin-bottom: 1rem;
    display: block;
}

.pe-step h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pe-step p {
    color: var(--text-medium);
    font-size: 1rem;
}

.pe-step.reveal {
    display: block; /* Redundant now, but kept for potential future use with scroll reveal */
}

/* Removed .pe-image-float since the image is no longer needed */

.pe-benefit-icon {
    font-size: 2rem;
    color: var(--red); /* Red for icons */
    margin-bottom: 1rem;
}

.pe-cta {
    background: linear-gradient(135deg, #f5f5f5, var(--background-main));
    position: relative;
    overflow: hidden;
}

.pe-cta-shape {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 111, 97, 0.1); /* Red for shape */
    border-radius: 50%;
    z-index: 0;
}

.pe-cta .container {
    position: relative;
    z-index: 1;
}

.pe-cta h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pe-cta .lead {
    color: var(--text-medium);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--background-form);
}

.modal-header {
    border-bottom: 1px solid #cccccc;
}

.modal-title {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    color: var(--text-medium);
    font-size: 1rem;
}

.modal-footer {
    border-top: 1px solid #cccccc;
}

.track-button-secondary {
    background-color: var(--background-form);
    color: var(--text-dark);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.track-button-secondary:hover {
    background-color: var(--secondary-color); /* Green for hover */
    color: var(--text-light);
}

@media (max-width: 768px) {
    .pe-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .pe-hero-image-wrap {
        text-align: center;
    }
    .pe-task-card, .pe-benefit-item, .pe-step {
        margin-bottom: 2rem;
    }
}