.container-process {
    max-width: 1300px;
    width: 100%;
    margin: 110px auto;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #132D55;
    font-weight: 600;
    position: relative;
}

h1::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #e74c3c;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.model-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.center-circle h2 {
    font-size: 1.8rem;
    color: #132D55;
    font-weight: bold;
}

.dotted-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border: 2px dotted #e74c3c; /* Changed to brand color */
    border-radius: 50%;
    z-index: 1;
}

.item {
    position: relative;
    padding: 20px;
    border-radius: 30px;
    min-height: 150px;
    display: flex;
    z-index: 5;
    transition: transform 0.3s ease;
}

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

.item-content {
    flex: 1;
}

.item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #132D55;
}

.item p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-circle img {
    width: 40px;
    height: 40px;
}

.dot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

/* Item specific styles */
.item-1 {
    background-color: #c8b6f0;
    grid-column: 1;
    grid-row: 1;
}
.dot-1 {
    background-color: #c8b6f0;
    top: 50%;
    right: -30px;
}

.item-2 {
    background-color: #8dd8e8;
    grid-column: 3;
    grid-row: 1;
}
.dot-2 {
    background-color: #8dd8e8;
    top: 50%;
    left: -30px;
}

.item-3 {
    background-color: #8cd28c;
    grid-column: 1;
    grid-row: 2;
}
.dot-3 {
    background-color: #8cd28c;
    top: 50%;
    right: -30px;
}

.item-4 {
    background-color: #e8a8e0;
    grid-column: 3;
    grid-row: 2;
}
.dot-4 {
    background-color: #e8a8e0;
    top: 50%;
    left: -30px;
}

.item-5 {
    background-color: #f9d97f;
    grid-column: 1;
    grid-row: 3;
}
.dot-5 {
    background-color: #f9d97f;
    top: 50%;
    right: -30px;
}

.item-6 {
    background-color: #ffb380;
    grid-column: 3;
    grid-row: 3;
}
.dot-6 {
    background-color: #ffb380;
    top: 50%;
    left: -30px;
}

.item-7 {
    background-color: #ff9999;
    grid-column: 1;
    grid-row: 4;
}
.dot-7 {
    background-color: #ff9999;
    top: 50%;
    right: -30px;
}

.item-8 {
    background-color: #d5e8a8;
    grid-column: 3;
    grid-row: 4;
}
.dot-8 {
    background-color: #d5e8a8;
    top: 50%;
    left: -30px;
}

@media (max-width: 768px) {
    .model-container {
        grid-template-columns: 1fr;
    }
    
    .item {
        grid-column: 1 !important;
    }
    
    .center-circle, .dotted-circle {
        display: none;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .dot {
        display: none;
    }
}