.postgresql-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    flex-wrap: wrap;
    min-height: 500px;
}

.postgresql-hero-section-text {
    font-size: 1rem;
    color: var(--gray);
}

.main-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* about section */
.postgresql-about-section {
    text-align: center;
}

.postgresql-about-section P {
    color: var(--gray);
    font-size: 1rem;
}

.postgresql-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    /* text-align: start; */
}

.postgresql-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 4px;
    height: 100%;
    background: #dfe6e9;
}

.postgresql-timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    padding-left: 70px;
}

.postgresql-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.6rem;
    text-align: center;
    line-height: 50px;
    position: absolute;
    left: 0;
    top: 0;
}

.postgresql-content {
    text-align: start;
}

.postgresql-content h3 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 6px;
}

.postgresql-content p {
    color: #636e72;
    font-size: 0.95rem;
    margin: 0;
}

/* benefits section */
.postgresql-benefits-section {
    text-align: center;
}

.postgresql-benefits-card {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    /* max-width: 600px; */
    gap: 20px;
    transition: box-shadow 0.3s ease;
}

.postgresql-benefits-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.postgresql-icon {
    font-size: 30px;
    background: #27b0e5b8;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(74, 144, 226, 0.5);
}

.postgresql-content h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.postgresql-content p {
    margin: 0;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.4;
}

/* process section */
.postgresql-process-section {
    text-align: center;
}

.postgresql-process-card {
    position: relative;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
}

.postgresql-process-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.postgresql-process-number {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.postgresql-process-content h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.postgresql-process-content p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .postgresql-hero-section {
        padding: 40px 20px;
        text-align: start;
    }
}

@media (max-width: 992px) {
    .postgresql-hero-section {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .postgresql-hero-section {
        padding: 30px 15px;
        text-align: center;
    }

    .postgresql-process-card {
        margin: 10px;
    }

    .postgresql-timeline::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 24px;
        width: 4px;
        height: 90%;
        background: #dfe6e9;
    }

    .postgresql-icon-circle {
        width: 50px;
        height: 50px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        font-size: 1.6rem;
        text-align: center;
        line-height: 50px;
        position: absolute;
        left: 0;
        top: 17px;
    }
}