.intellectualPropertyMain {
    background-color: #F2F4F8;
    /* Light green background */
    padding-bottom: 50px;
    min-height: 100vh;
}

.container {
    padding-top: 30px;
}

.container .main {
    max-width: 1200px;
}


.amb-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

.amb-card .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.amb-card .title sub {
    font-size: 46px;
    margin-right: 20px;
    color: var(--bgc);
}

.amb-card .content {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.amb-card .content .subTitle {
    font-size: 22px;
    color: #213712;
    font-weight: bold;
}

.amb-card .content p {
    margin-bottom: 10px;
}

.amb-card .newContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amb-card .newContent .item {
    flex: 1;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #ccc;
}

.amb-card .newContent .item:first-child {
    border: none;
}

.amb-card .newContent .label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    color: #174204;
}

.amb-card .newContent .label img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.amb-card .newContent .labelValue {
    font-size: 18px;
    text-align: center;
    margin-top: 15px;

}

.amb-card .fileContent {
    display: flex;
    align-items: center;
    gap: 30px;

}

.amb-card .fileContent .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(307deg, #F0F6FF 0%, #D6E5FE 100%);
    height: 250px;
    border-radius: 20px;
}

.amb-card .fileContent .name {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.amb-card .fileContent .name img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.amb-card .fileContent .msg div {
    text-align: center;
    margin-bottom: 10px;
}


/* Trademark Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 80px;
    margin-top: 30px;
    padding: 20px;
}

.process-flow .step {
    background-color: #fcfeff;
    /* Light background */
    border: 1px solid #eef6f2;
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    min-height: 160px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 50, 0, 0.05);
    background: linear-gradient(307deg, #F0F6FF 0%, #D6E5FE 100%);
}

.process-flow .step-num {
    position: absolute;
    left: 20px;
    top: -15px;
    font-size: 20px;
    color: #79cba3;
    font-weight: bold;
    font-family: Arial, sans-serif;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.process-flow .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4c5b6b;
    border-radius: 12px;
}

.process-flow .step-icon img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make icons white if they aren't */
}

/* Adjust if icons are already colored or dark */
.process-flow .step-icon img[src*="validity.png"],
.process-flow .step-icon img[src*="search.png"] {
    /* These might need adjustment based on valid usage, defaulting to white filter for uniform look on dark bg */
}

.process-flow .step-text {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
}

/* Arrow styling - Using pseudo elements for lines + triangles */
.process-flow .arrow-right,
.process-flow .arrow-down,
.process-flow .arrow-left {
    position: absolute;
    background: #666;
}

/* Arrow Lines & Heads */
/* Right (1->2, 2->3) */
.step-01 .arrow-right,
.step-02 .arrow-right {
    height: 2px;
    width: 80px;
    right: -80px;
    top: 50%;
}

.step-01 .arrow-right::after,
.step-02 .arrow-right::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border-left: 8px solid #666;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Down (3->4) */
.step-03 .arrow-down {
    width: 2px;
    height: 80px;
    bottom: -80px;
    left: 50%;
}

.step-03 .arrow-down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    border-top: 8px solid #666;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

/* Left (4->5, 5->6) */
.step-04 .arrow-left,
.step-05 .arrow-left {
    height: 2px;
    width: 80px;
    left: -80px;
    top: 50%;
}

.step-04 .arrow-left::after,
.step-05 .arrow-left::after {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    border-right: 8px solid #666;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Grid Positioning */
.step-01 {
    grid-area: 1 / 1 / 2 / 2;
}

.step-02 {
    grid-area: 1 / 2 / 2 / 3;
}

.step-03 {
    grid-area: 1 / 3 / 2 / 4;
}

.step-04 {
    grid-area: 2 / 3 / 3 / 4;
}

.step-05 {
    grid-area: 2 / 2 / 3 / 3;
}

.step-06 {
    grid-area: 2 / 1 / 3 / 2;
}

@media screen and (max-width: 768px) {
    .process-flow {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }

    .process-flow .step {
        grid-area: auto !important;
        /* Reset grid area */
    }

    .process-flow .arrow-right,
    .process-flow .arrow-left,
    .process-flow .arrow-down {
        display: none;
    }

    /* Mobile arrows (all down) */
    .process-flow .step::before {
        content: '';
        position: absolute;
        bottom: -35px;
        left: 50%;
        margin-left: -1px;
        width: 2px;
        height: 25px;
        background: #666;
    }

    .process-flow .step::after {
        content: '';
        position: absolute;
        bottom: -35px;
        left: 50%;
        margin-left: -5px;
        border-top: 8px solid #666;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }

    .step-06::before,
    .step-06::after {
        display: none;
    }
}