main h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    padding-top: 80px;
}

main p {
    text-align: left;
    padding: 20px 200px;
}

.cards-section {
    display: flex;
    justify-content: space-between;
    padding: 100px;
}

.card {
    padding: 10px;
    text-align: left;
    width: 30%;
}

.icon img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.card h3 {
    margin: 10px 0;
    text-decoration: underline;
}

.card p {
    text-align: left;
}

.process-section {
    padding: 2rem;
}

.process-section h2 {
    margin-bottom: 50px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

/* Horizontal connecting line */
.process-timeline::before {
    content: "";
    position: absolute;
    top: 40px; /* aligns with icons */
    left: 50px;
    right: 50px;
    height: 4px;
    background: #D4AF37;
    z-index: 0;
}

.process-step {
    flex: 1;
    max-width: 200px;
    text-align: center;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1;
    transition: transform 0.2s ease-in-out;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #D4AF37;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    color: #000000;
    font-size: 1.5rem;
}

.process-step p {
    color: #000000;
    font-size: 1.1rem;
}

/* Responsive styles */
@media (min-width: 901px) {
    .process-step:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 1300px) {
    .cards-section {
        padding: 50px;
    }

    .icon img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
}

@media (max-width: 1024px) {
    main p {
        padding: 20px 50px;
    }
}

@media (max-width: 900px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-timeline::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
    }

    .process-step {
        max-width: 300px;
    }

    .step-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    main h2 {
        padding-top: 20px;
    }

    .icon img {
        width: 80px;
        height: 80px;
    }

    .card h3 {
        font-size: 1.5rem;
    }

    .card p {
        font-size: 1.3rem;
    }
}

@media (max-width: 645px) {
    .cards-section {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
    }

    .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px; /* or adjust as needed */
    }
}

@media (max-width: 435px) {
    main h2 {
        font-size: 1.8rem;
    }

    main p {
        padding: 10px 50px;
        font-size: 1.2rem;
    }
}