/* How It Works Page Styles */

/* Hero Section */
.how-it-works-hero {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.how-it-works-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.intro-paragraph {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Setup Process Section */
.setup-process {
    padding: 60px 20px;
    background-color: #ffffff;
}

.steps-container {
    max-width: 1200px;
    margin: 40px auto 0;
}

.step {
    display: flex;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    background-color: #1a8870;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.3rem;
}

.step p {
    margin-bottom: 15px;
    color: #555;
}

.step-details {
    padding-left: 20px;
}

.step-details li {
    margin-bottom: 8px;
    position: relative;
    list-style-type: none;
}

.step-details li:before {
    content: "•";
    color: #1a8870;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Benefits Section */
.benefits {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.benefit-item {
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    margin-top: 0;
    color: #1a8870;
    font-size: 1.2rem;
}

.benefit-item p {
    color: #555;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 3rem;
    color: #1a8870;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step {
        flex-direction: column;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
